From 603473839a8588ab4db542b2ea8dccba23a1a6bf Mon Sep 17 00:00:00 2001 From: Satbir Chahal Date: Thu, 3 Apr 2025 05:30:17 -0700 Subject: [PATCH] chore(helm): run descedulerPolicy thru tpl func for more chart control --- charts/descheduler/templates/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/descheduler/templates/configmap.yaml b/charts/descheduler/templates/configmap.yaml index a74aef610..66e330a72 100644 --- a/charts/descheduler/templates/configmap.yaml +++ b/charts/descheduler/templates/configmap.yaml @@ -10,5 +10,5 @@ data: policy.yaml: | apiVersion: "{{ .Values.deschedulerPolicyAPIVersion }}" kind: "DeschedulerPolicy" -{{ toYaml .Values.deschedulerPolicy | trim | indent 4 }} +{{ tpl (toYaml .Values.deschedulerPolicy) . | trim | indent 4 }} {{- end }}