From 937d2a8b1dc23c2a75c692397764005726428493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Archambault?= Date: Wed, 10 Jun 2026 07:54:56 -0400 Subject: [PATCH] fix: redis clients unable to perform write commands sets redis securityContext.fsGroup Fixes the following error (redis clients stack tracing; pods loopcrashing) MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error. (redis://redis:6379) --- charts/opslevel/values.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/opslevel/values.yaml b/charts/opslevel/values.yaml index 4d87222..c55a5db 100644 --- a/charts/opslevel/values.yaml +++ b/charts/opslevel/values.yaml @@ -217,7 +217,8 @@ redis: create: true name: redis annotations: {} - securityContext: {} + securityContext: + fsGroup: 999 # fsGroupChangePolicy: Always # supplementalGroups: [] # sysctls: []