From 0e7e59e556bd6714ed658874db2f6c4a9f254954 Mon Sep 17 00:00:00 2001 From: Yannick Evers Date: Fri, 18 Oct 2024 08:24:22 +0000 Subject: [PATCH] Explicitly setting allowPrivilegeEscalation false --- status/templates/deployment.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/status/templates/deployment.yaml b/status/templates/deployment.yaml index d094f0f..acc7f45 100644 --- a/status/templates/deployment.yaml +++ b/status/templates/deployment.yaml @@ -34,6 +34,7 @@ spec: containers: - name: {{ .Chart.Name }} securityContext: + allowPrivilegeEscalation: false runAsUser: {{ .Values.runAsUser }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }}