Make /tmp writable

This commit is contained in:
Jonny Ervine 2023-09-07 23:15:32 +08:00
parent aa78f2e147
commit 04a8ce20fa

View File

@ -64,10 +64,14 @@ spec:
volumeMounts:
- mountPath: /config
name: tautulli-config
- mountPath: /tmp
name: tmp
volumes:
- name: tautulli-config
persistentVolumeClaim:
claimName: {{ .Values.config.configPvc }}
- name: tmp
hostDir: {}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}