From d700ace4c7a1585cef20f718bac39ea7113ca5d5 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Sun, 23 Feb 2025 10:25:53 -0600 Subject: [PATCH] give em a writable tmp directory --- helm-chart/templates/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/helm-chart/templates/deployment.yaml b/helm-chart/templates/deployment.yaml index ffade0e..5cfb98b 100644 --- a/helm-chart/templates/deployment.yaml +++ b/helm-chart/templates/deployment.yaml @@ -32,6 +32,9 @@ spec: limits: cpu: {{ .Values.cpuLimit }} memory: {{ .Values.memoryLimit }} + volumeMounts: + - name: tmp + mountPath: /tmp livenessProbe: httpGet: path: {{ .Values.probes.liveness.path }} @@ -56,6 +59,9 @@ spec: port: {{ .Values.port }} failureThreshold: 30 periodSeconds: 10 + volumes: + - name: tmp + emptyDir: {} imagePullSecrets: - name: {{ .Values.imagePullSecret }} {{- with .Values.nodeSelector }}