Skip to content

Commit

Permalink
Added TLS opts
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamingRaven committed Mar 28, 2024
1 parent f0a9cd3 commit d02578f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions charts/ak/templates/authentik/authentik-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ spec:
value: {{ .Values.smtp.from }}
- name: AUTHENTIK_EMAIL__PORT
value: {{ .Values.smtp.port | quote }}
- name: AUTHENTIK_EMAIL__USE_TLS
value: {{ .Values.smtp.useTLS | quote }}
- name: AUTHENTIK_EMAIL__USE_SSL
value: {{ .Values.smtp.useSSL | quote }}
- name: AUTHENTIK_EMAIL__TIMEOUT
value: {{ .Values.smtp.timeout | quote }}
# AUTHENTIK AUTOGEN VARIABLES
- name: AUTHENTIK_COOKIE_DOMAIN
value: {{ .Values.global.domain.full }}
Expand Down
3 changes: 3 additions & 0 deletions charts/ak/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ smtp:
port: 587
host: smtp.gmail.com
from: [email protected]
useTLS: false
useSSL: false
timeout: 10

secret:
generate: true
Expand Down

0 comments on commit d02578f

Please sign in to comment.