fix: tpl extraEnv + envMap
This commit is contained in:
parent
346789c244
commit
d5a0b47ce5
2 changed files with 19 additions and 10 deletions
|
@ -146,7 +146,15 @@ spec:
|
|||
key: {{ .Values.application.minio.secretKeySecretKey }}
|
||||
{{- end }}
|
||||
{{- if .Values.extraEnv }}
|
||||
{{ .Values.extraEnv | toYaml | nindent 12 }}
|
||||
{{ (tpl (.Values.extraEnv | toYaml) $) | nindent 12 }}
|
||||
{{- end }}
|
||||
{{- range $name, $value := .Values.envMap }}
|
||||
- name: "{{ $name }}"
|
||||
{{- if kindIs "string" $value }}
|
||||
value: {{ (tpl $value $) | quote }}
|
||||
{{- else }}
|
||||
{{- (tpl ($value | toYaml) $) | nindent 14 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
nodeSelector:
|
||||
{{- toYaml .Values.nodeSelector | nindent 8 }}
|
||||
|
|
|
@ -38,6 +38,7 @@ application:
|
|||
jwkSecretKey: jwk.json
|
||||
jwkOldSecretKey: jwk-old.json
|
||||
|
||||
envMap: {}
|
||||
extraEnv:
|
||||
extraVolumes:
|
||||
extraVolumeMounts:
|
||||
|
|
Loading…
Add table
Reference in a new issue