Support getting values from secrets in helm chart configuration (#12633)

This commit is contained in:
Sumesh Pradhan 2022-05-04 16:21:15 +05:30 committed by GitHub
parent 59710de95b
commit 41b9df2657
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -72,6 +72,10 @@ spec:
envFrom:
- configMapRef:
name: {{ include "appsmith.fullname" . }}
{{- if .Values.secretName }}
- secretRef:
name: {{ .Values.secretName }}
{{- end }}
volumes:
{{- if not .Values.persistence.enabled }}
- name: data

View File

@ -239,6 +239,8 @@ autoupdate:
##
scheduler: "0 * * * *"
secretName: ""
applicationConfig:
APPSMITH_OAUTH2_GOOGLE_CLIENT_ID: ""
APPSMITH_OAUTH2_GOOGLE_CLIENT_SECRET: ""