docs(alpine): quote release label value (#4460)

Labels should be quoted so that values such as "true" or "1" are not
interpolated to the wrong type.
pull/4464/head
Matt Butcher 6 years ago committed by GitHub
parent 133683c72f
commit e8b003af9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,7 +9,7 @@ metadata:
heritage: {{ .Release.Service }} heritage: {{ .Release.Service }}
# The "release" convention makes it easy to tie a release to all of the # The "release" convention makes it easy to tie a release to all of the
# Kubernetes resources that were created as part of that release. # Kubernetes resources that were created as part of that release.
release: {{ .Release.Name }} release: {{ .Release.Name | quote }}
# This makes it easy to audit chart usage. # This makes it easy to audit chart usage.
chart: {{ .Chart.Name }}-{{ .Chart.Version }} chart: {{ .Chart.Name }}-{{ .Chart.Version }}
app: {{ template "alpine.name" . }} app: {{ template "alpine.name" . }}

Loading…
Cancel
Save