feat(modjo-microservice): extraVolumes

This commit is contained in:
devthejo 2023-12-17 00:19:44 +01:00
parent 2616823c2d
commit 3014f5c3f2
Signed by: devthejo
GPG key ID: C04215C627711F5C
2 changed files with 21 additions and 13 deletions

View file

@ -46,6 +46,9 @@ spec:
- name: jwt
secret:
secretName: {{ .Values.application.jwt.secretName }}
{{- if .Values.extraVolumes }}
{{- .Values.extraVolumes | toYaml | nindent 8 }}
{{- end }}
containers:
- name: {{ .Chart.Name }}
securityContext:
@ -81,6 +84,9 @@ spec:
subPath: {{ .Values.application.jwt.jwkOldSecretKey }}
readOnly: true
{{- end }}
{{- if .Values.extraVolumeMounts }}
{{- .Values.extraVolumeMounts | toYaml | nindent 12 }}
{{- end }}
env:
- name: LOGLEVEL
value: {{ .Values.application.logLevel }}

View file

@ -39,6 +39,8 @@ application:
jwkOldSecretKey: jwk-old.json
extraEnv:
extraVolumes:
extraVolumeMounts:
commonAnnotations: {}
commonLabels: {}