From cf12656a148cee6a605c19c45b8c27e4050f2ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Gagni=C3=A8re?= <159892320+ngclinflows@users.noreply.github.com> Date: Mon, 21 Jul 2025 11:26:37 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Loki=20chart=20fails=20to=20render=20pro?= =?UTF-8?q?per=20YAML=20when=20add=20more=20than=20one=20ex=E2=80=A6=20(#1?= =?UTF-8?q?2911)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jay Clifford <45856600+Jayclifford345@users.noreply.github.com> --- production/helm/loki/templates/extra-manifests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/production/helm/loki/templates/extra-manifests.yaml b/production/helm/loki/templates/extra-manifests.yaml index 7b69423467..c7334a57e3 100644 --- a/production/helm/loki/templates/extra-manifests.yaml +++ b/production/helm/loki/templates/extra-manifests.yaml @@ -1,8 +1,8 @@ {{- range .Values.extraObjects }} --- -{{- if kindIs "map" . }} +{{ if kindIs "map" . }} {{ tpl (toYaml .) $ }} -{{- else }} +{{ else }} {{ tpl . $ }} -{{- end }} +{{ end }} {{- end }}