Skip to content

Commit

Permalink
fix: quote configmap values (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorini-dxc authored Sep 24, 2024
1 parent 2a12f55 commit a5ac49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/interop-eks-cronjob-chart/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ metadata:
namespace: {{ .Values.namespace }}
data:
{{- range $key, $val := .Values.configmap }}
{{ $key }}: {{ include "interop-eks-cronjob-chart.render-template" (dict "value" $val "context" $) }}
{{ $key }}: {{ include "interop-eks-cronjob-chart.render-template" (dict "value" $val "context" $) | quote }}
{{- end }}
{{- end }}

0 comments on commit a5ac49c

Please sign in to comment.