We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7963191 commit 47ec361Copy full SHA for 47ec361
charts/supabase/templates/auth/deployment.yaml
@@ -138,6 +138,10 @@ spec:
138
name: {{ include "supabase.secret.smtp" . }}
139
key: password
140
{{- end }}
141
+ {{- with .Values.auth.envFrom }}
142
+ envFrom:
143
+ {{- toYaml . | nindent 12 }}
144
+ {{- end }}
145
{{- with .Values.auth.livenessProbe }}
146
livenessProbe:
147
{{- toYaml . | nindent 12 }}
charts/supabase/values.yaml
@@ -311,6 +311,9 @@ auth:
311
GOTRUE_MAILER_URLPATHS_CONFIRMATION: "/auth/v1/verify"
312
GOTRUE_MAILER_URLPATHS_RECOVERY: "/auth/v1/verify"
313
GOTRUE_MAILER_URLPATHS_EMAIL_CHANGE: "/auth/v1/verify"
314
+ envFrom: []
315
+ # - secretRef:
316
+ # name: env-secret
317
# volumeMounts:
318
# - name: volume_name
319
# mountPath: /path/to/my/secret
0 commit comments