Add enable social auth env var
This commit is contained in:
parent
45267da312
commit
4a6cbc58ac
|
@ -1,6 +1,6 @@
|
|||
apiVersion: v2
|
||||
name: glitchtip
|
||||
description: A Helm chart for Kubernetes
|
||||
description: Open source error tracking that is compatible with Sentry
|
||||
|
||||
# A chart can be either an 'application' or a 'library' chart.
|
||||
#
|
||||
|
|
|
@ -43,6 +43,8 @@ spec:
|
|||
value: {{ required "databaseURL is a required value." .Values.databaseURL | quote }}
|
||||
- name: SECRET_KEY
|
||||
value: {{ required "secretKey is a required value." .Values.secretKey | quote }}
|
||||
- name: ENABLE_SOCIAL_AUTH
|
||||
value: {{ .Values.enableSocialAuth | quote }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
|
|
|
@ -14,6 +14,7 @@ nameOverride: ""
|
|||
fullnameOverride: ""
|
||||
databaseURL:
|
||||
secretKey:
|
||||
enableSocialAuth: false
|
||||
|
||||
serviceAccount:
|
||||
# Specifies whether a service account should be created
|
||||
|
|
Loading…
Reference in a new issue