From 65002c29ef302f3a54abdf2420a8b87a131a1edf Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sat, 10 Jan 2026 00:30:16 +0900 Subject: [PATCH] FEAT(zot): add Redis session store for multi-replica support - Use Authelia Redis for session storage - Fixes login redirect loop with replicas > 1 --- zot/helm-values.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zot/helm-values.yaml b/zot/helm-values.yaml index ef09f84..6f64a4a 100644 --- a/zot/helm-values.yaml +++ b/zot/helm-values.yaml @@ -117,6 +117,12 @@ configMaps: "auth": { "htpasswd": { "path": "/etc/zot/htpasswd" + }, + "sessionStore": { + "driver": "redis", + "redis": { + "url": "redis://authelia-redis-master.authelia.svc.cluster.local:6379" + } } } },