-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.md.gotmpl
51 lines (31 loc) · 1.11 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
50
51
{{ template "chart.header" . }}
{{ template "chart.deprecationWarning" . }}
{{ template "chart.badgesSection" . }}
{{ template "chart.description" . }}
{{ template "chart.homepageLine" . }}
{{ template "chart.maintainersSection" . }}
{{ template "chart.sourcesSection" . }}
{{ template "chart.requirementsSection" . }}
## Prerequisites
Before using this Helm chart, you should have the following prerequisites:
- Access to Kubernetes cluster (If needed contact your friendly neighbourhood DevOps engineer)
- Helm >= v3.14.3
- (**Optional**) helmfile >= v0.162.0 to install this chart
## Installation
> Note: **examples** can be found in the repository
To install this Helm chart, the easiest is to create a helmfile.yaml with needed values and run:
```
helmfile template
helmfile apply
```
Or use helmfile only to generate resources and apply them with kubectl like so:
```
helmfile template | kubectl -f -
```
Verify that the chart is deployed successfully:
> Note: `kubectl` is a better suited tool for this
```
helmfile status
```
{{ template "chart.valuesSection" . }}
{{ template "helm-docs.versionFooter" . }}