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-07-20 21:41:29 +02:00
alertmanager-matrix fix(alertmanager-matrix): configmap to file 2023-07-20 21:41:29 +02:00
hydrogen-web fix(hydrogen-web): update to newer appVersion 2023-06-28 13:04:01 +02:00
ntfy fix(ntfy): update to newer appVersion 2023-06-29 17:59:35 +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(ci): add publish script with lint, tag and helm package+push 2023-06-29 01:11:19 +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>
----