🔧(helm) add secret for email provisionning

Add email provisionning secret to be abble to provision email
This commit is contained in:
Jacques ROUSSEL
2024-09-09 11:13:28 +02:00
committed by Marie
parent 29904ef7b6
commit 864702d0ee
3 changed files with 9 additions and 5 deletions

View File

@@ -9,9 +9,12 @@ stringData:
DJANGO_SECRET_KEY: {{ .Values.djangoSecretKey }}
OIDC_RP_CLIENT_ID: {{ .Values.oidc.clientId }}
OIDC_RP_CLIENT_SECRET: {{ .Values.oidc.clientSecret }}
{{ if .Values.resourceServer }}
{{- if .Values.resourceServer }}
OIDC_RS_CLIENT_ID: {{ .Values.resourceServer.clientId }}
OIDC_RS_CLIENT_SECRET: {{ .Values.resourceServer.clientSecret }}
OIDC_RS_PRIVATE_KEY_STR: |
{{ .Values.resourceServer.privateKey | indent 4 }}
{{ end }}
{{- end }}
{{- if .Values.mail_provisionning_api_credentials }}
MAIL_PROVISIONING_API_CREDENTIALS: {{ .Values.mail_provisionning_api_credentials }}
{{- end }}