2023-12-20 23:51:20 +01:00
|
|
|
= helm-charts
|
2023-06-29 00:53:48 +02:00
|
|
|
|
2023-12-20 23:51:20 +01:00
|
|
|
== Usage
|
2023-06-29 00:53:48 +02:00
|
|
|
|
|
|
|
Helm must be installed and setup to your kubernetes cluster to use the charts.
|
2023-12-20 23:51:20 +01:00
|
|
|
Refer to Helm's https://helm.sh/docs[documentation] to get started.
|
2023-06-29 00:53:48 +02:00
|
|
|
Once Helm has been set up correctly, fetch the charts as follows:
|
|
|
|
|
2023-12-20 23:51:20 +01:00
|
|
|
[source,bash]
|
|
|
|
----
|
2023-11-03 15:59:10 +01:00
|
|
|
helm pull oci://codeberg.org/wrenix/helm-charts/<chart.name>
|
2023-12-20 23:51:20 +01:00
|
|
|
----
|
2023-06-29 00:53:48 +02:00
|
|
|
|
|
|
|
You can install a chart release using the following command:
|
|
|
|
|
2023-12-20 23:51:20 +01:00
|
|
|
[source,bash]
|
|
|
|
----
|
2023-11-03 15:59:10 +01:00
|
|
|
helm install <release> oci://codeberg.org/wrenix/helm-charts/<chart.name> --values values.yaml
|
2023-12-20 23:51:20 +01:00
|
|
|
----
|
2023-06-29 00:53:48 +02:00
|
|
|
|
|
|
|
To uninstall a chart release use `helm`'s delete command:
|
|
|
|
|
2023-12-20 23:51:20 +01:00
|
|
|
[source,bash]
|
|
|
|
----
|
2023-06-29 00:53:48 +02:00
|
|
|
helm uninstall <release>
|
2023-12-20 23:51:20 +01:00
|
|
|
----
|