From 898866c773628c98dd7ebd968122f99071d7e0c5 Mon Sep 17 00:00:00 2001 From: dutchie031 Date: Thu, 30 Jul 2026 13:40:04 +0200 Subject: [PATCH] updated priviliged folders --- .helm/templates/deployment.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.helm/templates/deployment.yaml b/.helm/templates/deployment.yaml index 0e87ccd..4299185 100644 --- a/.helm/templates/deployment.yaml +++ b/.helm/templates/deployment.yaml @@ -26,9 +26,19 @@ spec: image: {{ .Values.image.repository }}:{{ .Values.image.tag }} ports: - containerPort: {{ .Values.ports.containerPort }} + volumeMounts: + - name: cache + mountPath: /var/cache/nginx + - name: run + mountPath: /var/run securityContext: allowPrivilegeEscalation: false capabilities: drop: - ALL + volumes: + - name: cache + emptyDir: {} + - name: run + emptyDir: {} \ No newline at end of file