43 lines
No EOL
1.1 KiB
YAML
43 lines
No EOL
1.1 KiB
YAML
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: authentik
|
|
namespace: authentik
|
|
labels:
|
|
needsDatabase: "yes"
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: authentik
|
|
version: 2023.3.1
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: authentik-charts
|
|
namespace: flux-system
|
|
values:
|
|
authentik:
|
|
secret_key: "${SECRET_AUTHENTIK_SECRET_KEY}"
|
|
# This sends anonymous usage-data, stack traces on errors and
|
|
# performance data to sentry.beryju.org, and is fully opt-in
|
|
error_reporting:
|
|
enabled: true
|
|
postgresql:
|
|
host: "postgresql.database"
|
|
name: "authentik"
|
|
user: k3spostgresql
|
|
password: "${SECRET_DATABASE_PGSQL_USER_PASS}"
|
|
redis:
|
|
host: "redis-master.database"
|
|
password: "${SECRET_DATABASE_REDIS_PASS}"
|
|
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "letsencrypt-production"
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
hosts:
|
|
- host: k3sauth.***REMOVED***
|
|
paths:
|
|
- path: "/"
|
|
pathType: Prefix |