diff options
Diffstat (limited to 'kubernetes/authentication/components/keycloak-config-cli/templates')
-rw-r--r-- | kubernetes/authentication/components/keycloak-config-cli/templates/job.yaml | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/kubernetes/authentication/components/keycloak-config-cli/templates/job.yaml b/kubernetes/authentication/components/keycloak-config-cli/templates/job.yaml index 322db2b7a1..5ea4cbd770 100644 --- a/kubernetes/authentication/components/keycloak-config-cli/templates/job.yaml +++ b/kubernetes/authentication/components/keycloak-config-cli/templates/job.yaml @@ -50,7 +50,7 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} {{- with .Values.resources }} resources: - {{- toYaml . | nindent 10 }} + {{- toYaml . | nindent 12 }} {{- end }} env: {{- range $name, $value := .Values.env }} @@ -70,10 +70,19 @@ spec: secretKeyRef: name: "{{ tpl .Values.existingSecret . }}" key: "{{ .Values.existingSecretKey }}" - {{- end }} - {{- with .Values.securityContext }} + {{- end }} + {{- if .Values.existingSecrets }} + {{- range .Values.existingSecrets }} + - name: {{ .envVar }} + valueFrom: + secretKeyRef: + name: {{ .name }} + key: {{ .key }} + {{- end }} + {{- end }} + {{- with .Values.containerSecurityContext }} securityContext: - {{- toYaml . | nindent 10 }} + {{- toYaml . | nindent 12 }} {{- end }} volumeMounts: - name: config @@ -81,7 +90,6 @@ spec: {{- with .Values.extraVolumeMounts }} {{- tpl . $ | nindent 12 }} {{- end }} - {{ include "common.waitForJobContainer" . | indent 8 | trim }} volumes: - name: config secret: @@ -100,4 +108,4 @@ spec: {{- with .Values.securityContext }} securityContext: {{- toYaml . | nindent 8 }} - {{- end }} + {{- end }} |