1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 05:14:13 +01:00

Merge pull request #1660 from schahal/chore/run-policies-thru-tpl

feat(helm): run descedulerPolicy thru tpl func for more chart control
This commit is contained in:
Kubernetes Prow Robot
2025-07-17 02:30:24 -07:00
committed by GitHub

View File

@@ -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 }}