From ac9574a9d35cc35a5bd7e5911fbd3f199538f56c Mon Sep 17 00:00:00 2001 From: Nick Duff Date: Tue, 28 Oct 2025 16:15:35 +1300 Subject: [PATCH] feat(vector): add support for string templating in extraObjects --- charts/vector/templates/extra-manifests.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/charts/vector/templates/extra-manifests.yaml b/charts/vector/templates/extra-manifests.yaml index a9bb3b6b..a183ff07 100644 --- a/charts/vector/templates/extra-manifests.yaml +++ b/charts/vector/templates/extra-manifests.yaml @@ -1,4 +1,8 @@ {{ range .Values.extraObjects }} --- +{{- if typeIs "string" . }} +{{ tpl . $ }} +{{ else }} {{ tpl (toYaml .) $ }} +{{- end }} {{ end }}