diff --git a/deploy/helm/templates/community/config.yaml b/deploy/helm/templates/community/config.yaml index d69f4094..3892b988 100644 --- a/deploy/helm/templates/community/config.yaml +++ b/deploy/helm/templates/community/config.yaml @@ -8,7 +8,7 @@ metadata: {{- toYaml . | nindent 4 }} {{- end }} data: - LOG_LEVEL: {{ .Values.identity.config.logLevel | upper }} + LOG_LEVEL: {{ .Values.logLevel | upper }} IDENTITY_SERVICE: {{ .Values.identity.service.name }}:{{ .Values.identity.port }} DB_HOST: {{ .Values.postgresdb.service.name }} DB_DRIVER: {{ .Values.community.config.postgresDbDriver }} diff --git a/deploy/helm/templates/identity/config.yaml b/deploy/helm/templates/identity/config.yaml index daf805d9..eeb44257 100644 --- a/deploy/helm/templates/identity/config.yaml +++ b/deploy/helm/templates/identity/config.yaml @@ -8,7 +8,7 @@ metadata: {{- toYaml . | nindent 4 }} {{- end }} data: - LOG_LEVEL: {{ .Values.identity.config.logLevel | upper }} + LOG_LEVEL: {{ .Values.logLevel | upper }} JWT_SECRET: {{ .Values.jwtSecret }} #Used for creating a JWT. Can be anything APP_NAME: {{ .Values.identity.config.appName }} ENABLE_SHELL_INJECTION: {{ .Values.enableShellInjection | quote }} diff --git a/deploy/helm/templates/workshop/config.yaml b/deploy/helm/templates/workshop/config.yaml index 2bcc2fbc..a6635d02 100644 --- a/deploy/helm/templates/workshop/config.yaml +++ b/deploy/helm/templates/workshop/config.yaml @@ -6,7 +6,7 @@ metadata: release: {{ .Release.Name }} {{- toYaml .Values.workshop.config.labels | nindent 4 }} data: - LOG_LEVEL: {{ .Values.identity.config.logLevel | upper }} + LOG_LEVEL: {{ .Values.logLevel | upper }} IDENTITY_SERVICE: {{ .Values.identity.service.name }}:{{ .Values.identity.port }} SECRET_KEY: {{ .Values.workshop.config.secretKey }} DB_HOST: {{ .Values.postgresdb.service.name }}