From ca2e78769edfa53597e5ca1562f210a5bd3606e6 Mon Sep 17 00:00:00 2001 From: Sagar Patil Date: Thu, 9 Apr 2026 17:20:08 +0530 Subject: [PATCH] fix: run container as root to fix Tomcat directory permission errors Test-framework pods need write access to Tomcat dirs like webapps, conf/Catalina, work. Running as root (user 0) permanently fixes this. Co-Authored-By: Claude Opus 4.6 (1M context) --- hades/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hades/values.yaml b/hades/values.yaml index d9b0b69..138bdc3 100644 --- a/hades/values.yaml +++ b/hades/values.yaml @@ -36,8 +36,8 @@ securityContext: drop: - ALL readOnlyRootFilesystem: false - runAsNonRoot: true - runAsUser: 1000 + runAsNonRoot: false + runAsUser: 0 service: type: ClusterIP