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-08-26 13:16:22 +02:00
alertmanager-matrix fix(alertmanager-matrix): remove probes 2023-07-20 22:50:12 +02:00
conduit feat(conduit): add wellknown (nginx for configmap) 2023-08-18 02:11:35 +02:00
headscale fix(headscale): derp support (with embedded server) 2023-08-23 00:38:09 +02:00
headscale-ui feat(headscale-ui): init 2023-07-30 14:40:28 +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-08-21 13:42:23 +02:00
web-static fix(web-static): improve to miniserv config 2023-08-26 13:16:22 +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 chore: fix publish for new chart 2023-07-24 21:54:52 +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>
----