From 6918d6a6cd15da655789b44e8ca0037481375026 Mon Sep 17 00:00:00 2001 From: nold Date: Tue, 8 Aug 2023 14:48:55 +0200 Subject: [PATCH] fix(authentik): redis via chart not operator... --- projects/auth/manifests/redis.yaml | 12 ------------ projects/auth/values/authentik.yaml | 12 ++++++++---- 2 files changed, 8 insertions(+), 16 deletions(-) delete mode 100644 projects/auth/manifests/redis.yaml diff --git a/projects/auth/manifests/redis.yaml b/projects/auth/manifests/redis.yaml deleted file mode 100644 index 9af47ac0..00000000 --- a/projects/auth/manifests/redis.yaml +++ /dev/null @@ -1,12 +0,0 @@ -apiVersion: databases.spotahome.com/v1 -kind: RedisFailover -metadata: - name: authentik-redis - namespace: auth -spec: - sentinel: - replicas: 1 - redis: - replicas: 1 - auth: - secretPath: redis diff --git a/projects/auth/values/authentik.yaml b/projects/auth/values/authentik.yaml index 884e1b22..1c45b48a 100644 --- a/projects/auth/values/authentik.yaml +++ b/projects/auth/values/authentik.yaml @@ -90,8 +90,8 @@ authentik: #password: "" port: 5432 - redis: - host: 'rfs-authentik-redis.auth.svc.cluster.local' + # redis: + # host: 'rfs-authentik-redis.auth.svc.cluster.local' # -- List of config maps to mount blueprints from. Only keys in the # configmap ending with ".yaml" wil be discovered and applied @@ -128,7 +128,11 @@ postgresql: enabled: false redis: - enabled: false + #FIXME: Authentik doesn't support redis+sentinal yet.. + # See: https://github.com/goauthentik/authentik/pull/5395 + enabled: true architecture: standalone auth: - enabled: false + enabled: true + existingSecret: "redis" + existingSecretPasswordKey: "password"