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-08-17 10:43:46 +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): add tls and annotations for outpost ingress 2024-07-06 20:55:27 +02:00
conduit fix(conduit): update AppVersion v0.8.0 2024-06-15 09:03:22 +02:00
docs fix(element-call): draft with lk-jwt 2024-07-23 15:19:07 +02:00
element-call fix(element-call): update AppVersion v0.6.0 2024-08-17 10:43:46 +02:00
forgejo-runner fix(forgejo-runner): update dependencies (docker-in-docker v27.1.1) 2024-08-04 15:13:13 +02:00
gotosocial fix(gotosocial): add tracing support 2024-07-19 18:22:42 +02:00
grampsweb fix(grampsweb): update AppVersion v24.7.1 2024-08-04 15:07:08 +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 2024-08-09 10:23:40 +02:00
hydrogen-web fix(hydrogen-web): update appVersion 2024-02-06 22:19:37 +01:00
jellyfin fix(jellyfin): update AppVersion v10.9.9 2024-08-07 16:16:41 +02:00
matrix-authentication-service fix(matrix-authentication-service): port mapping 2024-06-05 17:40:38 +02:00
matrix-sliding-sync feat(matrix-sliding-sync): add opentelemetry suppor 2024-07-23 16:47:05 +02:00
matrix-synapse fix(matrix-synapse): update alpine v3.20.2 2024-08-04 15:14:21 +02:00
mautrix-signal fix(mautrix-signal): update AppVersion v0.7.0 2024-08-17 03:56:11 +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): updateStrategy move to correct place 2024-08-04 15:02:10 +02:00
postgresql fix(postgresql): update appVersion 2024-08-09 10:23:44 +02:00
speedtest-exporter fix(speedtest-exporter): improve config parameter 2024-07-05 12:40:07 +02:00
stalwart-mail fix(stalwart-mail): update AppVersion v0.9.1 (and scrape metrics) 2024-08-12 15:02:16 +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]