Files
chart/community/bazarr/1.2.13/templates/_persistence.tpl
2024-10-03 12:58:39 +00:00

36 lines
1.2 KiB
Smarty

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