From af370488234f3b6c7246d347ca447b17c5e60890 Mon Sep 17 00:00:00 2001 From: jmorganca Date: Tue, 1 Feb 2022 02:44:20 -0500 Subject: [PATCH] Dont toYaml import value --- helm/charts/infra/templates/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/charts/infra/templates/configmap.yaml b/helm/charts/infra/templates/configmap.yaml index fb130f0c21..f2883ed7a8 100644 --- a/helm/charts/infra/templates/configmap.yaml +++ b/helm/charts/infra/templates/configmap.yaml @@ -8,6 +8,6 @@ data: config.yaml: | {{- if .Values.config.import }} import: - {{- toYaml .Values.config.import | nindent 6 }} + {{- .Values.config.import | nindent 6 }} {{- end }} {{- toYaml (omit .Values.config "import") | nindent 4 }}