Skip to content

Commit

Permalink
Merge pull request #140 from rjinski/fix-keep-secret-values
Browse files Browse the repository at this point in the history
Ensure chart env values are strings/quoted
  • Loading branch information
hitman99 authored Feb 25, 2024
2 parents 1d9e64b + 595d62f commit 027cc24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/ext-postgres-operator/templates/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
value: {{ include "chart.fullname" . }}
{{- range $key, $value := .Values.env }}
- name: {{ $key }}
value: {{ $value }}
value: {{ $value | quote }}
{{- end }}
{{- if .Values.volumeMounts }}
volumeMounts:
Expand Down

0 comments on commit 027cc24

Please sign in to comment.