Files
kubern-everything/12_Authentik/authentik-values.gomplate.yaml
2026-02-12 22:16:00 +01:00

24 lines
742 B
YAML

authentik:
secret_key: "PleaseGenerateASecureKey"
# This sends anonymous usage-data, stack traces on errors and
# performance data to sentry.io, and is fully opt-in
error_reporting:
enabled: true
postgresql:
host: "your-cnpg-cluster-rw.namespace.svc.cluster.local"
name: "authentik"
port: 5432
existingSecret: "authentik-credentials" # if you want to use a secret
server:
ingress:
# Specify kubernetes ingress controller class name
ingressClassName: nginx | traefik | kong
enabled: true
hosts:
- authentik.domain.tld
# Disable the built-in PostgreSQL
postgresql:
enabled: false
auth:
password: "ThisIsNotASecurePassword"