Skip to content
Snippets Groups Projects
Unverified Commit 17e14e81 authored by Sebastian Rojo's avatar Sebastian Rojo Committed by GitHub
Browse files

Merge pull request #63 from Mikey032/feature/auth-allow-additional-secrets

Feat auth: allow additional secrets as env variables
parents 7963191d 4ce87597
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.2
version: 0.1.3
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
......
......@@ -138,6 +138,10 @@ spec:
name: {{ include "supabase.secret.smtp" . }}
key: password
{{- end }}
{{- with .Values.auth.envFrom }}
envFrom:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.auth.livenessProbe }}
livenessProbe:
{{- toYaml . | nindent 12 }}
......
......@@ -311,6 +311,9 @@ auth:
GOTRUE_MAILER_URLPATHS_CONFIRMATION: "/auth/v1/verify"
GOTRUE_MAILER_URLPATHS_RECOVERY: "/auth/v1/verify"
GOTRUE_MAILER_URLPATHS_EMAIL_CHANGE: "/auth/v1/verify"
envFrom: []
# - secretRef:
# name: env-secret
# volumeMounts:
# - name: volume_name
# mountPath: /path/to/my/secret
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment