My collection of helm charts. Helm is the best way to find, share, and use software built for Kubernetes. https://wrenix.eu/docs/helm-charts/
Find a file
2024-02-06 15:36:45 +01:00
alertmanager-matrix fix(alertmanager-matrix): lint 2024-01-13 01:23:39 +01:00
alertmanager-ntfy fix(alertmanager-ntfy): lint 2024-01-13 01:26:44 +01:00
authentik-application fix(authentik-application): lint 2024-01-13 01:27:00 +01:00
conduit fix(conduit): lint 2024-01-13 01:28:03 +01:00
docs feat(gotosocial): init 2024-01-29 22:26:41 +01:00
forgejo-runner fix(forgejo-runner): update appVersion 2024-02-06 15:28:23 +01:00
gotosocial fix(gotosocial): update appVersion 2024-02-06 15:30:11 +01:00
grampsweb fix(grampsweb): environment variable name 2024-01-20 15:07:11 +01:00
headscale fix(headscale): lint 2024-01-13 01:29:47 +01:00
headscale-ui fix(headscale-ui): lint 2024-01-13 01:29:49 +01:00
hydrogen-web fix(hydrogen-web): lint 2024-01-13 01:30:10 +01:00
jellyfin fix(jellyfin): lint 2024-01-13 01:30:28 +01:00
miniserve fix(miniserve): update appVersion 2024-02-06 15:33:18 +01:00
monitoring fix(monitoring): lint 2024-01-13 01:30:59 +01:00
ntfy fix(ntfy): update appVersion 2024-02-06 15:36:45 +01:00
postgresql fix(postgresql): lint 2024-01-13 01:31:29 +01:00
stalwart-mail fix(stalwart-mail): update appVersion 2024-02-06 15:31:59 +01:00
.gitignore fix(ci): add publish script with lint, tag and helm package+push 2023-06-29 01:11:19 +02:00
ct.yaml chore(ci): chart-testing 2024-01-13 01:18:16 +01:00
publish.sh feat(gotosocial): init 2024-01-29 22:26:41 +01:00
README.adoc fix(forgejo-runner): update appVersion (and move from README.md to README.adoc) 2023-12-21 00:04:44 +01:00
README.adoc.gotmpl fix(forgejo-runner): update appVersion (and move from README.md to README.adoc) 2023-12-21 00:04:44 +01:00

{{ define "chart.header" }}= {{ .Name }}
{{ end }}
{{ define "chart.versionBadge" }}
image::https://img.shields.io/badge/Version-{{ .Version | replace "-" "--" }}-informational?style=flat-square[Version: {{ .Version }}]{{end}}
{{ define "chart.typeBadge" }}
image::https://img.shields.io/badge/Version-{{ .Type }}-informational?style=flat-square[Type: {{ .Type }}]{{end}}
{{ define "chart.appVersionBadge" }}{{- if (ne .AppVersion "") }}
image::https://img.shields.io/badge/AppVersion-{{ .AppVersion }}-informational?style=flat-square[AppVersion: {{ .AppVersion }}]{{ end }}{{end}}
{{ define "chart.maintainersHeader" }}== Maintainers{{ end }}
{{ define "chart.maintainersTable" }}.Maintainers
|===
| Name | Email | Url
  {{- range .Maintainers }}

| {{ .Name }}
| {{ if .Email }}<{{ .Email }}>{{ end }}
| {{ if .Url }}<{{ .Url }}>{{ end }}
  {{- end }}
|===
{{ end }}
{{ define "chart.valuesHeader" }}== Values{{ end }}
{{ define "chart.valuesTable" }}.Values
|===
| Key | Type | Default | Description
  {{- range .Values }}

| {{ .Key }}
| {{ .Type }}
| {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }}
| {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }}
  {{- end }}
|===
{{ end }}

{{- define "chart.prerequirements" -}}{{- end -}}

{{ template "chart.header" . }}
{{ template "chart.deprecationWarning" . }}

{{ template "chart.badgesSection" . }}
{{ template "chart.maintainersSection" . }}

{{ template "chart.prerequirements" . }}

== Usage

Helm must be installed and setup to your kubernetes cluster to use the charts.
Refer to Helm's https://helm.sh/docs[documentation] to get started.
Once Helm has been set up correctly, fetch the charts as follows:

[source,bash]
----
helm pull oci://codeberg.org/wrenix/helm-charts/{{ template "chart.name" . }}
----

You can install a chart release using the following command:

[source,bash]
----
helm install {{ template "chart.name" . }}-release oci://codeberg.org/wrenix/helm-charts/{{ template "chart.name" . }} --values values.yaml
----

To uninstall a chart release use `helm`'s delete command:

[source,bash]
----
helm uninstall {{ template "chart.name" . }}-release
----

{{ template "chart.valuesSection" . }}

Autogenerated from chart metadata using https://github.com/norwoodj/helm-docs[helm-docs]