-
Notifications
You must be signed in to change notification settings - Fork 86
/
_templates.gotmpl
70 lines (37 loc) · 1.27 KB
/
_templates.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
{{ define "doc.header" -}}
{{ template "chart.header" . }}
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
{{ template "chart.versionBadge" . }}
{{ template "chart.deprecationWarning" . }}
## Description
{{ template "chart.description" . }}
{{- end }}
{{ define "doc.maintainer_and_sources" -}}
{{ template "chart.maintainersSection" . }}
## Sources
Source: {{ template "chart.sourcesList" . }}
Source code: {{ template "chart.homepage" . }}
{{- end }}
{{ define "doc.deps" -}}
## Dependencies
This chart has the following dependencies:
{{ template "chart.requirementsTable" . }}
{{- end }}
{{ define "doc.values" -}}
{{ template "chart.valuesSection" . }}
{{- end }}
{{ define "doc.footer" -}}
## Installing the Chart
To install the chart with the release name `my-release`:
```console
helm install my-release repo/<chart-name>>
```
The command deploys the chart on the Kubernetes cluster in the default configuration.
## Uninstalling the Chart
To uninstall/delete the my-release deployment:
```console
helm delete my-release
```
The command removes all the Kubernetes components associated with the chart and deletes the release.
{{ template "helm-docs.versionFooter" . }}
{{- end }}