From 9167b1a14dcb6d8d55a730f0bc094351c2f04c19 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sat, 10 Jan 2026 00:31:29 +0900 Subject: [PATCH] FIX(zot): correct sessionDriver config key name - Fix configuration key for Redis session driver - Ensure proper session storage configuration --- zot/helm-values.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/zot/helm-values.yaml b/zot/helm-values.yaml index 6f64a4a..e448acf 100644 --- a/zot/helm-values.yaml +++ b/zot/helm-values.yaml @@ -118,11 +118,10 @@ configMaps: "htpasswd": { "path": "/etc/zot/htpasswd" }, - "sessionStore": { - "driver": "redis", - "redis": { - "url": "redis://authelia-redis-master.authelia.svc.cluster.local:6379" - } + "sessionDriver": { + "name": "redis", + "url": "redis://authelia-redis-master.authelia.svc.cluster.local:6379", + "keyprefix": "zot" } } },