diff --git a/charts/modjo-microservice/templates/rollout.yaml b/charts/modjo-microservice/templates/rollout.yaml index 278440a..01c5524 100644 --- a/charts/modjo-microservice/templates/rollout.yaml +++ b/charts/modjo-microservice/templates/rollout.yaml @@ -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 }} diff --git a/charts/modjo-microservice/values.yaml b/charts/modjo-microservice/values.yaml index df15b4e..0e74fb0 100644 --- a/charts/modjo-microservice/values.yaml +++ b/charts/modjo-microservice/values.yaml @@ -39,6 +39,8 @@ application: jwkOldSecretKey: jwk-old.json extraEnv: +extraVolumes: +extraVolumeMounts: commonAnnotations: {} commonLabels: {}