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-07-05 11:36:30 +02:00
alertmanager-matrix fix(alertmanager-matrix): adjust for more security 2024-02-29 13:47:21 +01:00
alertmanager-ntfy fix(alertmanager-ntfy): update appVersion 2024-02-06 22:21:36 +01:00
authentik-application fix(authentik-application): lint 2024-01-13 01:27:00 +01:00
conduit fix(conduit): update AppVersion v0.8.0 2024-06-15 09:03:22 +02:00
docs fix(home-assistant): init 2024-03-26 17:42:48 +01:00
forgejo-runner fix(forgejo-runner): update appVersion 2024-07-05 09:47:53 +02:00
gotosocial fix(gotosocial): update AppVersion v0.16.0 2024-06-18 15:47:51 +02:00
grampsweb fix(grampsweb): update appVersion 2024-05-14 13:10:57 +02:00
headscale fix(headscale): bootstrap with config 2024-06-24 10:00:21 +02:00
headscale-ui fix(headscale-ui): improve networking 2024-05-30 16:38:26 +02:00
home-assistant fix(home-assistant): update AppVersion v2024.7.0 and nats,zigbee2mqtt 2024-07-05 09:43:07 +02:00
hydrogen-web fix(hydrogen-web): update appVersion 2024-02-06 22:19:37 +01:00
jellyfin fix(jellyfin): update appVersion 2024-07-05 09:47:55 +02:00
matrix-authentication-service fix(matrix-authentication-service): port mapping 2024-06-05 17:40:38 +02:00
matrix-sliding-sync fix(matrix-sliding-sync): update appVersion 2024-07-05 09:47:57 +02:00
matrix-synapse fix(matrix-synapse): update alpine v3.20.1 2024-06-24 10:02:42 +02:00
mautrix-signal fix(mautrix-signal): update AppVersion v0.6.2 2024-06-18 15:48:23 +02:00
miniserve fix(miniserve): update appVersion 2024-03-16 18:38:59 +01:00
monitoring feat(monitoring): manage proto support on prober 2024-04-03 13:48:32 +02:00
ntfy fix(ntfy): update appVersion 2024-05-14 13:22:11 +02:00
postgresql fix(postgresql): update appVersion 2024-05-14 13:22:36 +02:00
speedtest-exporter feat(speedtest-exporter): implement 2024-07-05 11:36:30 +02:00
stalwart-mail fix(stalwart-mail): add chart-testing values for traefik 2024-06-11 16:26:46 +02:00
.gitignore fix(ci): add publish script with lint, tag and helm package+push 2023-06-29 01:11:19 +02:00
ct.yaml fix(alertmanager-matrix): adjust for more security 2024-02-29 13:47:21 +01:00
publish.sh fix(forgejo-runner): update AppVersion to v3.5.0 2024-06-10 01:02:34 +02: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 chore(docs): support sections 2024-04-03 15:48:03 +02: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" -}}
{{- if .Sections.Sections -}}
{{- range .Sections.Sections }}
.Values {{.SectionName }}
{{ template "chart.valuesOneTable" .SectionItems }}
{{- end }}{{/* range sections*/}}
{{- if .Sections.DefaultSection.SectionItems -}}
.Values {{.Sections.DefaultSection.SectionName }}
{{ template "chart.valuesOneTable" .Sections.DefaultSection.SectionItems }}
{{- end }}{{/* end default section */}}
{{- else }}{{/* if no sections */}}
.Values
{{ template "chart.valuesOneTable" .Values }}
{{- end }}
{{ end }}{{/* end chart.valuesTable */}}
{{ define "chart.valuesOneTable" -}}
|===
| Key | Type | Default | Description
  {{- range . }}

| {{ .Key }}
| {{ .Type }}
| {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }}
| {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }}
  {{- end }}
|===
{{ end }}{{/* end chart.valuesOneTable */}}

{{- 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]