Skip to content

Commit 027cc24

Browse files
authored
Merge pull request #140 from rjinski/fix-keep-secret-values
Ensure chart env values are strings/quoted
2 parents 1d9e64b + 595d62f commit 027cc24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

charts/ext-postgres-operator/templates/operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ spec:
5151
value: {{ include "chart.fullname" . }}
5252
{{- range $key, $value := .Values.env }}
5353
- name: {{ $key }}
54-
value: {{ $value }}
54+
value: {{ $value | quote }}
5555
{{- end }}
5656
{{- if .Values.volumeMounts }}
5757
volumeMounts:

0 commit comments

Comments
 (0)