authentik init
This commit is contained in:
44
infrastructure/05-authentik/base/values.yaml
Normal file
44
infrastructure/05-authentik/base/values.yaml
Normal file
@ -0,0 +1,44 @@
|
||||
authentik:
|
||||
secret_key: "---"
|
||||
error_reporting:
|
||||
enabled: true
|
||||
|
||||
# add this block under the `authentik:` block in your values.yaml file
|
||||
# authentik:
|
||||
email:
|
||||
# -- SMTP Server emails are sent from, fully optional
|
||||
host: "---"
|
||||
port: 587
|
||||
# -- SMTP credentials. When left empty, no authentication will be done.
|
||||
username: "---"
|
||||
# -- SMTP credentials. When left empty, no authentication will be done.
|
||||
password: "---"
|
||||
# -- Enable either use_tls or use_ssl. They can't be enabled at the same time.
|
||||
use_tls: true
|
||||
# -- Enable either use_tls or use_ssl. They can't be enabled at the same time.
|
||||
use_ssl: false
|
||||
# -- Connection timeout in seconds
|
||||
timeout: 30
|
||||
# -- Email 'from' address can either be in the format "foo@bar.baz" or "authentik <foo@bar.baz>"
|
||||
from: "authentik@steffenillium.de"
|
||||
|
||||
|
||||
global:
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: authentik-secret
|
||||
|
||||
server:
|
||||
ingress:
|
||||
# Specify kubernetes ingress controller class name
|
||||
ingressClassName: traefik
|
||||
enabled: true
|
||||
hosts:
|
||||
- authentik.steffenillium.de
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
auth:
|
||||
password: "---"
|
||||
redis:
|
||||
enabled: true
|
Reference in New Issue
Block a user