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
2023-10-20 20:37:59 +02:00
alertmanager-matrix fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
alertmanager-ntfy fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
authentik-application chore(authentik-application): update README.md 2023-10-16 22:01:30 +02:00
conduit fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
forgejo-runner feat(forgejo-runner): init helm-chart #1 2023-10-20 20:37:59 +02:00
headscale fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
headscale-ui fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
hydrogen-web fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
jellyfin fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
miniserve fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
ntfy fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
postgresql fix: podLabels to all charts (and appVersion update) 2023-10-16 21:59:41 +02:00
.gitignore fix(ci): add publish script with lint, tag and helm package+push 2023-06-29 01:11:19 +02:00
publish.sh fix: generate first version of README.md by helm-docs 2023-10-16 21:35:44 +02:00
README.adoc fix(ci): add publish script with lint, tag and helm package+push 2023-06-29 01:11:19 +02:00

= helm-charts

== 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/<chart>
----

You can install a chart release using the following command:

[source,bash]
----
helm install <release> oci://codeberg.org/wrenix/helm-charts/<chart> --values values.yaml
----

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

[source,bash]
----
helm uninstall <release>
----