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 ...@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # 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. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # 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 # 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 # incremented each time you make changes to the application. Versions are not expected to
......
...@@ -138,6 +138,10 @@ spec: ...@@ -138,6 +138,10 @@ spec:
name: {{ include "supabase.secret.smtp" . }} name: {{ include "supabase.secret.smtp" . }}
key: password key: password
{{- end }} {{- end }}
{{- with .Values.auth.envFrom }}
envFrom:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.auth.livenessProbe }} {{- with .Values.auth.livenessProbe }}
livenessProbe: livenessProbe:
{{- toYaml . | nindent 12 }} {{- toYaml . | nindent 12 }}
......
...@@ -311,6 +311,9 @@ auth: ...@@ -311,6 +311,9 @@ auth:
GOTRUE_MAILER_URLPATHS_CONFIRMATION: "/auth/v1/verify" GOTRUE_MAILER_URLPATHS_CONFIRMATION: "/auth/v1/verify"
GOTRUE_MAILER_URLPATHS_RECOVERY: "/auth/v1/verify" GOTRUE_MAILER_URLPATHS_RECOVERY: "/auth/v1/verify"
GOTRUE_MAILER_URLPATHS_EMAIL_CHANGE: "/auth/v1/verify" GOTRUE_MAILER_URLPATHS_EMAIL_CHANGE: "/auth/v1/verify"
envFrom: []
# - secretRef:
# name: env-secret
# volumeMounts: # volumeMounts:
# - name: volume_name # - name: volume_name
# mountPath: /path/to/my/secret # mountPath: /path/to/my/secret
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment