diff --git a/applications/40-authentik/authentik.yaml b/applications/40-authentik/authentik.yaml index e7d0e12..aa99136 100644 --- a/applications/40-authentik/authentik.yaml +++ b/applications/40-authentik/authentik.yaml @@ -6,19 +6,45 @@ metadata: spec: project: default source: - repoURL: "https://charts.goauthentik.io/" - chart: "authentik" - targetRevision: "2025.6.4" - type: "helm" + repoURL: https://charts.goauthentik.io/ + targetRevision: 2024.6.4 helm: - releaseName: "authentik" + values: | + postgresql: + enabled: false + redis: + enabled: false + postgresqlConfig: + host: postgresql.database + port: 5432 + database: authentik + username: authentik + password: + existingSecret: authentik-secrets + existingSecretKey: postgresql-password + redisConfig: + host: + port: + password: + existingSecret: authentik-secrets + existingSecretKey: redis-password + authentik: + secret_key_existing_secret: authentik-secrets + secret_key_existing_secret_key: secret-key + external_url: "https://authentik.yourdomain.com/" + ingress: + enabled: true + hosts: + - host: authentik.hxme.net + paths: + - path: / + pathType: Prefix destination: - server: "https://kubernetes.default.svc" + server: https://kubernetes.default.svc namespace: home-server syncPolicy: automated: - prune: true selfHeal: true + prune: true syncOptions: - CreateNamespace=true -