From 8ff1b288a976a1adf947d6a93dd93bcc0381344a Mon Sep 17 00:00:00 2001 From: JM Huibonhoa Date: Wed, 10 Jun 2026 14:45:06 -0400 Subject: [PATCH] fix: add /tmp volume and volume mount to tools container to facilitate writes when readOnlyRootFileSystem is set to true Signed-off-by: JM Huibonhoa --- helm/kagent-tools/templates/deployment.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/helm/kagent-tools/templates/deployment.yaml b/helm/kagent-tools/templates/deployment.yaml index c4b4a35..c92c9c6 100644 --- a/helm/kagent-tools/templates/deployment.yaml +++ b/helm/kagent-tools/templates/deployment.yaml @@ -111,4 +111,9 @@ spec: port: http-tools initialDelaySeconds: 15 periodSeconds: 15 - + volumeMounts: + - name: tmp + mountPath: /tmp + volumes: + - name: tmp + emptyDir: {}