From 0550623c219dcd3ffc339fe3e1f16df78852d99b Mon Sep 17 00:00:00 2001 From: Theron Voran Date: Fri, 20 Mar 2020 10:54:32 -0700 Subject: [PATCH] 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. --- templates/server-headless-service.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/server-headless-service.yaml b/templates/server-headless-service.yaml index 80a94a3..b9069d8 100644 --- a/templates/server-headless-service.yaml +++ b/templates/server-headless-service.yaml @@ -15,7 +15,7 @@ metadata: annotations: service.alpha.kubernetes.io/tolerate-unready-endpoints: "true" {{- if .Values.server.service.annotations }} -{{ toYaml .Values.server.service.annotations | indent 4 }} +{{ tpl .Values.server.service.annotations . | indent 4 }} {{- end }} spec: clusterIP: None