From a5c1772e4ed8f1788072ec9e15222a1afd6ca0b5 Mon Sep 17 00:00:00 2001 From: Davide Piu Date: Thu, 19 Feb 2026 23:10:57 +0000 Subject: [PATCH] fix: mount users_database.yml in Authelia pod Mount the authelia-users Secret as volume at /config/users_database.yml so Authelia can authenticate user davide. --- clusters/lab/security/authelia.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/clusters/lab/security/authelia.yaml b/clusters/lab/security/authelia.yaml index b642dbc..43302e0 100644 --- a/clusters/lab/security/authelia.yaml +++ b/clusters/lab/security/authelia.yaml @@ -39,6 +39,15 @@ spec: limits: cpu: 200m memory: 128Mi + extraVolumeMounts: + - name: users-db + mountPath: /config/users_database.yml + subPath: users_database.yml + readOnly: true + extraVolumes: + - name: users-db + secret: + secretName: authelia-users ingress: enabled: true className: traefik