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 }}
|
key: {{ .Values.application.minio.secretKeySecretKey }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.extraEnv }}
|
{{- 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 }}
|
{{- end }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml .Values.nodeSelector | nindent 8 }}
|
{{- toYaml .Values.nodeSelector | nindent 8 }}
|
||||||
|
|
|
@ -4,8 +4,8 @@ nameOverride: ""
|
||||||
exposed: true
|
exposed: true
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository:
|
repository:
|
||||||
tag:
|
tag:
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
pullSecrets: []
|
pullSecrets: []
|
||||||
|
|
||||||
|
@ -38,9 +38,10 @@ application:
|
||||||
jwkSecretKey: jwk.json
|
jwkSecretKey: jwk.json
|
||||||
jwkOldSecretKey: jwk-old.json
|
jwkOldSecretKey: jwk-old.json
|
||||||
|
|
||||||
extraEnv:
|
envMap: {}
|
||||||
extraVolumes:
|
extraEnv:
|
||||||
extraVolumeMounts:
|
extraVolumes:
|
||||||
|
extraVolumeMounts:
|
||||||
|
|
||||||
commonAnnotations: {}
|
commonAnnotations: {}
|
||||||
commonLabels: {}
|
commonLabels: {}
|
||||||
|
@ -81,8 +82,8 @@ autoscaling:
|
||||||
enabled: false
|
enabled: false
|
||||||
minReplicas: 1
|
minReplicas: 1
|
||||||
maxReplicas: 100
|
maxReplicas: 100
|
||||||
targetCPUUtilizationPercentage:
|
targetCPUUtilizationPercentage:
|
||||||
targetMemoryUtilizationPercentage:
|
targetMemoryUtilizationPercentage:
|
||||||
|
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
|
@ -119,6 +120,6 @@ rollout:
|
||||||
preview:
|
preview:
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false
|
enabled: false
|
||||||
hostname:
|
hostname:
|
||||||
|
|
||||||
automountServiceAccountToken: false
|
automountServiceAccountToken: false
|
||||||
|
|
Loading…
Add table
Reference in a new issue