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: limits:
cpu: {{ .Values.cpuLimit }} cpu: {{ .Values.cpuLimit }}
memory: {{ .Values.memoryLimit }} memory: {{ .Values.memoryLimit }}
volumeMounts:
- name: tmp
mountPath: /tmp
livenessProbe: livenessProbe:
httpGet: httpGet:
path: {{ .Values.probes.liveness.path }} path: {{ .Values.probes.liveness.path }}
@ -56,6 +59,9 @@ spec:
port: {{ .Values.port }} port: {{ .Values.port }}
failureThreshold: 30 failureThreshold: 30
periodSeconds: 10 periodSeconds: 10
volumes:
- name: tmp
emptyDir: {}
imagePullSecrets: imagePullSecrets:
- name: {{ .Values.imagePullSecret }} - name: {{ .Values.imagePullSecret }}
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}