diff --git a/charts/ocis/templates/notifications/deployment.yaml b/charts/ocis/templates/notifications/deployment.yaml index d9acf856d..8d38de102 100644 --- a/charts/ocis/templates/notifications/deployment.yaml +++ b/charts/ocis/templates/notifications/deployment.yaml @@ -26,6 +26,9 @@ spec: {{- include "ocis.containerSecurityContext" . | nindent 10 }} env: {{- include "ocis.serviceRegistry" . | nindent 12 }} + + - name: OCIS_DEFAULT_LANGUAGE + value: {{ default "en" .Values.features.language.default | quote }} - name: NOTIFICATIONS_LOG_COLOR value: {{ .Values.logging.color | quote }} diff --git a/charts/ocis/templates/settings/deployment.yaml b/charts/ocis/templates/settings/deployment.yaml index ca5601210..3ffe4a92a 100644 --- a/charts/ocis/templates/settings/deployment.yaml +++ b/charts/ocis/templates/settings/deployment.yaml @@ -26,6 +26,9 @@ spec: env: {{- include "ocis.serviceRegistry" . | nindent 12 }} + - name: OCIS_DEFAULT_LANGUAGE + value: {{ default "en" .Values.features.language.default | quote }} + - name: SETTINGS_LOG_COLOR value: {{ .Values.logging.color | quote }} - name: SETTINGS_LOG_LEVEL @@ -45,9 +48,6 @@ spec: - name: SETTINGS_DEBUG_PPROF value: {{ .Values.debug.profiling | quote }} - - name: SETTINGS_DEFAULT_LANGUAGE - value: {{ default "en" .Values.features.language.default | quote }} - # cache - name: SETTINGS_CACHE_STORE value: {{ default "memory" .Values.cache.type | quote }} diff --git a/charts/ocis/templates/userlog/deployment.yaml b/charts/ocis/templates/userlog/deployment.yaml index 823d6eadd..2c87afc16 100644 --- a/charts/ocis/templates/userlog/deployment.yaml +++ b/charts/ocis/templates/userlog/deployment.yaml @@ -26,6 +26,10 @@ spec: {{- include "ocis.containerSecurityContext" . | nindent 10 }} env: {{- include "ocis.serviceRegistry" . | nindent 12 }} + + - name: OCIS_DEFAULT_LANGUAGE + value: {{ default "en" .Values.features.language.default | quote }} + - name: USERLOG_LOG_COLOR value: {{ .Values.logging.color | quote }} - name: USERLOG_LOG_LEVEL