-
Notifications
You must be signed in to change notification settings - Fork 4
/
README.md.gotmpl
48 lines (30 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
{{ template "chart.header" . }}
{{ template "chart.deprecationWarning" . }}
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
{{ template "chart.description" . }}
{{ template "chart.homepageLine" . }}
## How to install this chart
Add Delivery Hero public chart repo:
```console
helm repo add deliveryhero https://charts.deliveryhero.io/
```
A simple install with default values:
```console
helm install deliveryhero/{{ template "chart.name" . }}
```
To install the chart with the release name `my-release`:
```console
helm install my-release deliveryhero/{{ template "chart.name" . }}
```
To install with some set values:
```console
helm install my-release deliveryhero/{{ template "chart.name" . }} --set values_key1=value1 --set values_key2=value2
```
To install with custom values file:
```console
helm install my-release deliveryhero/{{ template "chart.name" . }} -f values.yaml
```
{{ template "chart.sourcesSection" . }}
{{ template "chart.requirementsSection" . }}
{{ template "chart.valuesSection" . }}
{{ template "chart.maintainersSection" . }}