From ada82d93d3a5635e4f247dd1396fc3c756b33c7a Mon Sep 17 00:00:00 2001 From: astro-stan <36302090+astro-stan@users.noreply.github.com> Date: Sun, 22 Mar 2026 17:19:32 +0000 Subject: [PATCH] fix(authentik): remove deprecated dependency (#46283) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Authentik removed is requirement for redis in 2025.10 See: https://goauthentik.io/blog/2025-11-13-we-removed-redis/ ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [ ] 📜 Documentation Changes **🧪 How Has This Been Tested?** Tested chart renders **📃 Notes:** **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [X] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [x] ⬆️ I increased versions for any altered app according to semantic versioning - [x] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --- charts/stable/authentik/Chart.yaml | 10 +--------- charts/stable/authentik/templates/_config.tpl | 2 -- charts/stable/authentik/templates/_secret.tpl | 1 - charts/stable/authentik/values.yaml | 2 -- 4 files changed, 1 insertion(+), 14 deletions(-) diff --git a/charts/stable/authentik/Chart.yaml b/charts/stable/authentik/Chart.yaml index 7cba297fc31..43f1d8b61ba 100644 --- a/charts/stable/authentik/Chart.yaml +++ b/charts/stable/authentik/Chart.yaml @@ -17,13 +17,6 @@ dependencies: alias: "" tags: [] import-values: [] - - name: valkey - version: 1.0.0 - repository: oci://oci.trueforge.org/truecharts - condition: redis.enabled - alias: redis - tags: [] - import-values: [] deprecated: false description: Authentik is an open-source Identity Provider focused on flexibility and versatility. home: https://trueforge.org/truetech/truecharts/charts/stable/authentik @@ -46,5 +39,4 @@ sources: - https://github.com/trueforge-org/truecharts/tree/master/charts/stable/authentik - https://goauthentik.io/docs/ type: application -version: 40.0.0 - +version: 40.0.1 diff --git a/charts/stable/authentik/templates/_config.tpl b/charts/stable/authentik/templates/_config.tpl index 826ec9d8c56..454418ad312 100644 --- a/charts/stable/authentik/templates/_config.tpl +++ b/charts/stable/authentik/templates/_config.tpl @@ -19,8 +19,6 @@ server-worker: AUTHENTIK_POSTGRESQL__USER: {{ .Values.cnpg.main.user }} AUTHENTIK_POSTGRESQL__HOST: {{ .Values.cnpg.main.creds.host }} AUTHENTIK_POSTGRESQL__PORT: "5432" - AUTHENTIK_REDIS__HOST: {{ .Values.redis.creds.plain }} - AUTHENTIK_REDIS__PORT: "6379" {{/* Outposts */}} AUTHENTIK_OUTPOSTS__DISCOVER: "false" diff --git a/charts/stable/authentik/templates/_secret.tpl b/charts/stable/authentik/templates/_secret.tpl index faf26d54e10..129b73673d4 100644 --- a/charts/stable/authentik/templates/_secret.tpl +++ b/charts/stable/authentik/templates/_secret.tpl @@ -14,7 +14,6 @@ server-worker: data: {{/* Dependencies */}} AUTHENTIK_POSTGRESQL__PASSWORD: {{ .Values.cnpg.main.creds.password | trimAll "\"" }} - AUTHENTIK_REDIS__PASSWORD: {{ .Values.redis.creds.redisPassword | trimAll "\"" }} {{/* Secret Key */}} AUTHENTIK_SECRET_KEY: {{ $secretKey }} diff --git a/charts/stable/authentik/values.yaml b/charts/stable/authentik/values.yaml index bd5405c484d..83356295b7b 100644 --- a/charts/stable/authentik/values.yaml +++ b/charts/stable/authentik/values.yaml @@ -457,8 +457,6 @@ cnpg: enabled: true user: authentik database: authentik -redis: - enabled: true metrics: # FIXME: Metrics do not work yet