feat(modjo-microservice): extraVolumes
This commit is contained in:
parent
2616823c2d
commit
3014f5c3f2
2 changed files with 21 additions and 13 deletions
|
@ -43,9 +43,12 @@ spec:
|
|||
imagePullSecrets:
|
||||
{{- toYaml .Values.image.pullSecrets | nindent 8 }}
|
||||
volumes:
|
||||
- name: jwt
|
||||
secret:
|
||||
secretName: {{ .Values.application.jwt.secretName }}
|
||||
- name: jwt
|
||||
secret:
|
||||
secretName: {{ .Values.application.jwt.secretName }}
|
||||
{{- if .Values.extraVolumes }}
|
||||
{{- .Values.extraVolumes | toYaml | nindent 8 }}
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
securityContext:
|
||||
|
@ -71,16 +74,19 @@ spec:
|
|||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
volumeMounts:
|
||||
{{- if .Values.application.jwt.enabled }}
|
||||
- name: jwt
|
||||
mountPath: /secrets/jwk.json
|
||||
subPath: {{ .Values.application.jwt.jwkSecretKey }}
|
||||
readOnly: true
|
||||
- name: jwt
|
||||
mountPath: /secrets/jwk-old.json
|
||||
subPath: {{ .Values.application.jwt.jwkOldSecretKey }}
|
||||
readOnly: true
|
||||
{{- end }}
|
||||
{{- if .Values.application.jwt.enabled }}
|
||||
- name: jwt
|
||||
mountPath: /secrets/jwk.json
|
||||
subPath: {{ .Values.application.jwt.jwkSecretKey }}
|
||||
readOnly: true
|
||||
- name: jwt
|
||||
mountPath: /secrets/jwk-old.json
|
||||
subPath: {{ .Values.application.jwt.jwkOldSecretKey }}
|
||||
readOnly: true
|
||||
{{- end }}
|
||||
{{- if .Values.extraVolumeMounts }}
|
||||
{{- .Values.extraVolumeMounts | toYaml | nindent 12 }}
|
||||
{{- end }}
|
||||
env:
|
||||
- name: LOGLEVEL
|
||||
value: {{ .Values.application.logLevel }}
|
||||
|
|
|
@ -39,6 +39,8 @@ application:
|
|||
jwkOldSecretKey: jwk-old.json
|
||||
|
||||
extraEnv:
|
||||
extraVolumes:
|
||||
extraVolumeMounts:
|
||||
|
||||
commonAnnotations: {}
|
||||
commonLabels: {}
|
||||
|
|
Loading…
Add table
Reference in a new issue