helm-charts/README.md

24 lines
581 B
Markdown
Raw Normal View History

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