{{- define "readarr.persistence" -}} persistence: config: enabled: true {{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.readarrStorage.config) | nindent 4 }} targetSelector: readarr: readarr: mountPath: /config {{- if and (eq .Values.readarrStorage.config.type "ixVolume") (not (.Values.readarrStorage.config.ixVolumeConfig | default dict).aclEnable) }} 01-permissions: mountPath: /mnt/directories/config {{- end }} tmp: enabled: true type: emptyDir targetSelector: readarr: readarr: mountPath: /tmp {{- range $idx, $storage := .Values.readarrStorage.additionalStorages }} {{ printf "readarr-%v:" (int $idx) }} enabled: true {{- include "ix.v1.common.app.storageOptions" (dict "storage" $storage) | nindent 4 }} targetSelector: readarr: readarr: mountPath: {{ $storage.mountPath }} {{- if and (eq $storage.type "ixVolume") (not ($storage.ixVolumeConfig | default dict).aclEnable) }} 01-permissions: mountPath: /mnt/directories{{ $storage.mountPath }} {{- end }} {{- end }} {{- end -}}