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-29 13:47:21 +01: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): fix wellknown resources and replica 2024-02-13 15:14:36 +01:00
docs fix(matrix-sliding-sync): init 2024-02-21 00:58:52 +01:00
forgejo-runner fix(forgejo-runner): update kubectl image 2024-02-19 00:12:17 +01:00
gotosocial fix(gotosocial): update appVersion 2024-02-19 00:13:32 +01:00
grampsweb fix(grampsweb): update appVersion 2024-02-06 19:25:29 +01:00
headscale fix(headscale): downgrade and switch registry to ghcr.io 2024-02-19 07:39:44 +01:00
headscale-ui fix(headscale-ui): update appVersion 2024-02-06 22:27:05 +01:00
hydrogen-web fix(hydrogen-web): update appVersion 2024-02-06 22:19:37 +01:00
jellyfin fix(jellyfin): update appVersion 2024-02-06 22:14:28 +01:00
matrix-sliding-sync fix(matrix-sliding-sync): update appVersion 2024-02-21 01:06:23 +01:00
matrix-synapse fix(matrix-synapse): update appVersion 2024-02-19 00:15:13 +01:00
mautrix-signal feat(mautrix-signal): init 2024-02-20 23:05:06 +01:00
miniserve fix(miniserve): update appVersion 2024-02-06 15:33:18 +01:00
monitoring fix(monitoring): improve labels 2024-02-08 00:00:29 +01:00
ntfy fix(ntfy): update appVersion 2024-02-06 15:36:45 +01:00
postgresql fix(postgresql): update appVersion 2024-02-19 00:13:03 +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 fix(alertmanager-matrix): adjust for more security 2024-02-29 13:47:21 +01:00
publish.sh fix(matrix-sliding-sync): init 2024-02-21 00:58:52 +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]