FEAT(zot): add Redis session store for multi-replica support

- Use Authelia Redis for session storage
- Fixes login redirect loop with replicas > 1
This commit is contained in:
2026-01-10 00:30:16 +09:00
parent f3240e72aa
commit 65002c29ef

View File

@@ -117,6 +117,12 @@ configMaps:
"auth": { "auth": {
"htpasswd": { "htpasswd": {
"path": "/etc/zot/htpasswd" "path": "/etc/zot/htpasswd"
},
"sessionStore": {
"driver": "redis",
"redis": {
"url": "redis://authelia-redis-master.authelia.svc.cluster.local:6379"
}
} }
} }
}, },