Fix server-headless-service annotations (#236)
`Values.server.service.annotations` are now being treated as multi-line strings, to match the other annotations in the chart, and to support templating within the annotations.
This commit is contained in:
parent
04df47159d
commit
0550623c21
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ metadata:
|
||||||
annotations:
|
annotations:
|
||||||
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
|
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
|
||||||
{{- if .Values.server.service.annotations }}
|
{{- if .Values.server.service.annotations }}
|
||||||
{{ toYaml .Values.server.service.annotations | indent 4 }}
|
{{ tpl .Values.server.service.annotations . | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
clusterIP: None
|
clusterIP: None
|
||||||
|
|
Loading…
Reference in a new issue