Skip to content

Commit

Permalink
Fix helm
Browse files Browse the repository at this point in the history
  • Loading branch information
piyushroshan committed May 24, 2024
1 parent 34cbab6 commit 92ddafa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/helm/templates/community/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/templates/identity/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/templates/workshop/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 92ddafa

Please sign in to comment.