fix: tpl extraEnv + envMap

This commit is contained in:
devthejo 2024-06-23 15:27:58 +02:00
parent 346789c244
commit d5a0b47ce5
Signed by: devthejo
GPG key ID: C04215C627711F5C
2 changed files with 19 additions and 10 deletions

View file

@ -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 }}

View file

@ -4,8 +4,8 @@ nameOverride: ""
exposed: true
image:
repository:
tag:
repository:
tag:
pullPolicy: IfNotPresent
pullSecrets: []
@ -38,9 +38,10 @@ application:
jwkSecretKey: jwk.json
jwkOldSecretKey: jwk-old.json
extraEnv:
extraVolumes:
extraVolumeMounts:
envMap: {}
extraEnv:
extraVolumes:
extraVolumeMounts:
commonAnnotations: {}
commonLabels: {}
@ -81,8 +82,8 @@ autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage:
targetMemoryUtilizationPercentage:
targetCPUUtilizationPercentage:
targetMemoryUtilizationPercentage:
replicaCount: 1
@ -119,6 +120,6 @@ rollout:
preview:
ingress:
enabled: false
hostname:
hostname:
automountServiceAccountToken: false
automountServiceAccountToken: false