give em a writable tmp directory

This commit is contained in:
Waylon S. Walker 2025-02-23 10:25:53 -06:00
parent 01e146db7c
commit d700ace4c7

View file

@ -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 }}