12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {{- define "navidrome.persistence" -}}
- persistence:
- data:
- enabled: true
- type: {{ .Values.navidromeStorage.data.type }}
- datasetName: {{ .Values.navidromeStorage.data.datasetName | default "" }}
- hostPath: {{ .Values.navidromeStorage.data.hostPath | default "" }}
- targetSelector:
- navidrome:
- navidrome:
- mountPath: /data
- 01-permissions:
- mountPath: /mnt/directories/data
- music:
- enabled: true
- type: {{ .Values.navidromeStorage.music.type }}
- datasetName: {{ .Values.navidromeStorage.music.datasetName | default "" }}
- hostPath: {{ .Values.navidromeStorage.music.hostPath | default "" }}
- targetSelector:
- navidrome:
- navidrome:
- mountPath: /music
- 01-permissions:
- mountPath: /mnt/directories/music
- {{- range $idx, $storage := .Values.navidromeStorage.additionalStorages }}
- {{ printf "navidrome-%v" (int $idx) }}:
- {{- $size := "" -}}
- {{- if $storage.size -}}
- {{- $size = (printf "%vGi" $storage.size) -}}
- {{- end }}
- enabled: true
- type: {{ $storage.type }}
- datasetName: {{ $storage.datasetName | default "" }}
- hostPath: {{ $storage.hostPath | default "" }}
- server: {{ $storage.server | default "" }}
- share: {{ $storage.share | default "" }}
- domain: {{ $storage.domain | default "" }}
- username: {{ $storage.username | default "" }}
- password: {{ $storage.password | default "" }}
- size: {{ $size }}
- {{- if eq $storage.type "smb-pv-pvc" }}
- mountOptions:
- - key: noperm
- {{- end }}
- targetSelector:
- navidrome:
- navidrome:
- mountPath: {{ $storage.mountPath }}
- 01-permissions:
- mountPath: /mnt/directories{{ $storage.mountPath }}
- {{- end }}
- {{- end -}}
|