-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.md.gotmpl
49 lines (30 loc) · 1.14 KB
/
README.md.gotmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# {{ template "chart.name" . }}
{{ template "chart.description" . }}
{{ template "chart.maintainersSection" . }}
## Prerequisites
* Helm 3+
{{ template "chart.requirementsSection" . }}
## Add repository
```console
helm repo add devops-ia https://devops-ia.github.io/helm-charts
helm repo update
```
## Install Helm chart
```console
helm install [RELEASE_NAME] devops-ia/{{ template "chart.name" . }}
```
This install all the Kubernetes components associated with the chart and creates the release.
_See [helm install](https://helm.sh/docs/helm/helm_install/) for command documentation._
## Uninstall Helm chart
```console
# Helm
helm uninstall [RELEASE_NAME]
```
This removes all the Kubernetes components associated with the chart and deletes the release.
_See [helm uninstall](https://helm.sh/docs/helm/helm_uninstall/) for command documentation._
## Configuration
See [Customizing the chart before installing](https://helm.sh/docs/intro/using_helm/#customizing-the-chart-before-installing). To see all configurable options with comments:
```console
helm show values devops-ia/{{ template "chart.name" . }}
```
{{ template "chart.valuesSection" . }}