From 2a292a6a96e7b388d2bac6e22d4f82413595556c Mon Sep 17 00:00:00 2001 From: Vijay Bandari Date: Fri, 12 Sep 2025 10:42:47 -0700 Subject: [PATCH] Update extraManifests to support string along with yaml --- charts/lightdash/templates/extraManifests.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/charts/lightdash/templates/extraManifests.yaml b/charts/lightdash/templates/extraManifests.yaml index 2855904..fc9a76b 100644 --- a/charts/lightdash/templates/extraManifests.yaml +++ b/charts/lightdash/templates/extraManifests.yaml @@ -1,4 +1,8 @@ {{ range .Values.extraObjects }} --- -{{ tpl (toYaml .) $ }} -{{ end }} \ No newline at end of file +{{ if typeIs "string" . }} + {{- tpl . $ }} +{{- else }} + {{- tpl (toYaml .) $ }} +{{- end }} +{{ end }}