Skip to content

Commit 987fde8

Browse files
Merge pull request #3 from Intreecom/fix/handling-template-in-values
fix: handling template in values files
2 parents 639ba2d + 9b76937 commit 987fde8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

charts/py-app/templates/_helpers.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ the main deployment are required.
7272
env:
7373
{{- range $key, $val := . }}
7474
- name: {{ $key }}
75-
value: {{ $val | quote }}
75+
value: {{ tpl (print $val) $ | quote }}
7676
{{- end }}
7777
{{- end }}
7878
{{- with .Values.externalSecrets }}
@@ -82,4 +82,4 @@ envFrom:
8282
name: {{ $val.targetName }}
8383
{{- end }}
8484
{{- end }}
85-
{{ end -}}
85+
{{ end -}}

0 commit comments

Comments
 (0)