From 6822c2b7a48a230dd9ea9bdb38b31ae2e3fdebb9 Mon Sep 17 00:00:00 2001 From: Nguyen Marc Date: Thu, 20 Apr 2023 13:49:28 +0200 Subject: [PATCH] fix(grendel): remove extra line break --- helm/grendel/templates/postscript-configmap.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/grendel/templates/postscript-configmap.yaml b/helm/grendel/templates/postscript-configmap.yaml index d9cbc7745..10c3aa7c4 100644 --- a/helm/grendel/templates/postscript-configmap.yaml +++ b/helm/grendel/templates/postscript-configmap.yaml @@ -4,10 +4,10 @@ metadata: name: {{ template "grendel.name" . }}-config data: postscript.sh: | -{{ .Values.config.postscript | nindent 4 }} +{{- .Values.config.postscript | nindent 4 }} hosts.json: | -{{ .Values.config.hosts | toJson | nindent 4 }} +{{- .Values.config.hosts | toJson | nindent 4 }} images.json: | -{{ .Values.config.images | toJson | nindent 4 }} +{{- .Values.config.images | toJson | nindent 4 }}