REFACTOR(authelia): switch to Deployment mode

- Change from DaemonSet to Deployment with 1 replica
- Remove Redis dependency (not needed for single replica)
This commit is contained in:
2026-01-09 02:05:46 +09:00
parent 45ab6592d6
commit 369181717b

View File

@@ -7,6 +7,8 @@ ingress:
# Pod configuration # Pod configuration
pod: pod:
kind: Deployment
replicas: 1
resources: resources:
requests: requests:
cpu: 15m cpu: 15m
@@ -67,12 +69,6 @@ configMap:
cookies: cookies:
- domain: kro.kr - domain: kro.kr
subdomain: auth0213 subdomain: auth0213
redis:
enabled: true
host: authelia-redis.authelia.svc.cluster.local
port: 6379
password:
disabled: true
# Storage - PostgreSQL (CNPG cluster) # Storage - PostgreSQL (CNPG cluster)
storage: storage:
@@ -151,20 +147,6 @@ configMap:
secret: secret:
existingSecret: authelia-secrets existingSecret: authelia-secrets
# Redis for session storage (HA)
redis:
enabled: true
architecture: standalone
auth:
enabled: false
master:
resources:
requests:
cpu: 10m
memory: 64Mi
limits:
memory: 128Mi
# No persistence needed - using PostgreSQL # No persistence needed - using PostgreSQL
# Note: Authelia Helm chart does not support affinity configuration # Note: Authelia Helm chart does not support affinity configuration