From d4b84305a27c6bd2bc6b08a083d472cdfeaf96a3 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Sun, 4 Jan 2026 02:04:46 +0900 Subject: [PATCH] FIX(redis): use customConfig for maxmemory - extraArgs was not being applied to Redis container - Use customConfig which is the correct way to set Redis directives - maxmemory 800mb with allkeys-lru policy --- falco/helm-values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/falco/helm-values.yaml b/falco/helm-values.yaml index cebde56..0035f52 100644 --- a/falco/helm-values.yaml +++ b/falco/helm-values.yaml @@ -174,10 +174,10 @@ falcosidekick: cpu: 10m memory: 256Mi limits: - memory: 1Gi # Increased from 512Mi to prevent OOM (84 restarts) - extraArgs: - - "--maxmemory 800mb" - - "--maxmemory-policy allkeys-lru" + memory: 1Gi + customConfig: + - maxmemory 800mb + - maxmemory-policy allkeys-lru # Authentication disabled - using Authelia SSO # existingSecret: falco-ui-secret