-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathREADME.md.gotmpl
71 lines (48 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{{- define "repository.organization" -}}
romanow
{{- end -}}
{{- define "repository.url" -}}
https://github.com/romanow/helm-charts
{{- end -}}
{{- define "helm.url" -}}
https://romanow.github.io/helm-charts/
{{- end -}}
{{- define "helm.path" -}}
{{ template "repository.organization" . }}/{{ template "chart.name" . }}
{{- end -}}
{{- define "install" -}}
### Installing the Chart
To install the chart with the release name `{{ template "chart.name" . }}`:
```shell
$ helm repo add {{ template "repository.organization" . }} {{ template "helm.url" . }}
$ helm repo update
$ helm install {{ template "chart.name" . }} {{ template "helm.path" . }}
```
{{- end -}}
{{- define "uninstall" -}}
### Uninstalling the Chart
To uninstall the `{{ template "chart.name" . }}` installation:
```shell
helm uninstall {{ template "chart.name" . }}
```
{{- end -}}
{{- define "configuration.header" -}}
### Configuration
{{- end -}}
{{- define "maintainers.header" -}}
### Maintainer
{{- end -}}
{{- define "sources.header" -}}
### Sources
{{- end -}}
# Helm Chart for {{ template "chart.name" . }}
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }}
{{ template "chart.description" . }}
{{ template "install" . }}
{{ template "uninstall" . }}
{{ template "configuration.header" . }}
{{ template "chart.valuesTableHtml" . }}
{{ template "sources.header" . }}
{{ template "chart.sourcesList" . }}
{{ template "maintainers.header" . }}
{{ template "chart.maintainersTable" . }}