From 8de4a13461263bfdac56c72f5521fa4bb228f5b4 Mon Sep 17 00:00:00 2001 From: Guilherme Moreira Rodrigues Date: Wed, 18 Mar 2026 14:37:10 -0300 Subject: [PATCH] fix(matcher): update securityContext to run as root --- charts/matcher/values.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/charts/matcher/values.yaml b/charts/matcher/values.yaml index eda2cdbd..cae42b31 100644 --- a/charts/matcher/values.yaml +++ b/charts/matcher/values.yaml @@ -101,16 +101,16 @@ matcher: securityContext: # -- Defines the group ID for the user running the process inside the container - runAsGroup: 65534 + runAsGroup: 0 # -- Defines the user ID for the process running inside the container - runAsUser: 65534 - # -- Ensures the process does not run as root - runAsNonRoot: true + runAsUser: 0 + # -- Ensures the process does run as root + runAsNonRoot: false capabilities: drop: - ALL - # -- Defines the root filesystem as read-only - readOnlyRootFilesystem: true + # -- Defines the root filesystem as writable + readOnlyRootFilesystem: false # -- PodDisruptionBudget configuration pdb: