From 61753f08ebaf04f1e7a7491b7cc12769f3e9e94c Mon Sep 17 00:00:00 2001 From: SnoozeFreddo <61939821+SnoozeFreddo@users.noreply.github.com> Date: Fri, 20 Feb 2026 16:18:30 +0100 Subject: [PATCH] fix(helm): Add writable temp directory mounts when `readOnlyRootFilesystem` is enabled (#1542) --- charts/planka/templates/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/planka/templates/deployment.yaml b/charts/planka/templates/deployment.yaml index 0f10964f..2dcffb9c 100644 --- a/charts/planka/templates/deployment.yaml +++ b/charts/planka/templates/deployment.yaml @@ -70,6 +70,12 @@ spec: - mountPath: /app/logs subPath: app-logs name: emptydir + - mountPath: /app/.tmp + subPath: app-tmp + name: emptydir + - mountPath: /tmp + subPath: tmp + name: emptydir {{- end }} {{- /* Extra volume mounts */}} {{- range .Values.extraMounts }}