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: volumeMounts:
- mountPath: /config - mountPath: /config
name: tautulli-config name: tautulli-config
- mountPath: /tmp
name: tmp
volumes: volumes:
- name: tautulli-config - name: tautulli-config
persistentVolumeClaim: persistentVolumeClaim:
claimName: {{ .Values.config.configPvc }} claimName: {{ .Values.config.configPvc }}
- name: tmp
hostDir: {}
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}
nodeSelector: nodeSelector:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}