feat(documentation): Added authentik readme content and example helm values file
This commit is contained in:
parent
15fc386317
commit
ee53709994
2 changed files with 29 additions and 0 deletions
27
Authentik/values.yml
Normal file
27
Authentik/values.yml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
authentik:
|
||||
secret_key: <secret key>
|
||||
# This sends anonymous usage-data, stack traces on errors and
|
||||
# performance data to sentry.io, and is fully opt-in
|
||||
error_reporting:
|
||||
enabled: false
|
||||
postgresql:
|
||||
password: <database password>
|
||||
|
||||
server:
|
||||
ingress:
|
||||
# Specify kubernetes ingress controller class name
|
||||
ingressClassName: traefik
|
||||
enabled: true
|
||||
hosts:
|
||||
- <authentik hostname>
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: "letsencrypt-production"
|
||||
tls:
|
||||
- hosts:
|
||||
- <authentik hostname>
|
||||
secretName: authentik-tls
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
auth:
|
||||
password: <database password>
|
||||
Loading…
Add table
Add a link
Reference in a new issue