charts/audiobookshelf/templates/deployment.yaml aktualisiert
This commit is contained in:
parent
211459ce08
commit
a706b17705
@ -52,6 +52,10 @@ spec:
|
|||||||
mountPath: /config
|
mountPath: /config
|
||||||
- name: metadata
|
- name: metadata
|
||||||
mountPath: /metadata
|
mountPath: /metadata
|
||||||
|
- name: audiobooks
|
||||||
|
mountPath: /audiobooks
|
||||||
|
- name: podcasts
|
||||||
|
mountPath: /podcasts
|
||||||
{{- range .Values.persistentVolumeClaims }}
|
{{- range .Values.persistentVolumeClaims }}
|
||||||
- name: {{ .name }}
|
- name: {{ .name }}
|
||||||
mountPath: {{ .mountPath }}
|
mountPath: {{ .mountPath }}
|
||||||
@ -83,6 +87,20 @@ spec:
|
|||||||
{{- else }}
|
{{- else }}
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
- name: audiobooks
|
||||||
|
{{- if .Values.persistence.audiobooks.enabled }}
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: {{ .Values.persistence.audiobooks.existingClaim | default (printf "%s-audiobooks" (include "audiobookshelf.fullname" .)) }}
|
||||||
|
{{- else }}
|
||||||
|
emptyDir: {}
|
||||||
|
{{- end }}
|
||||||
|
- name: podcasts
|
||||||
|
{{- if .Values.persistence.podcasts.enabled }}
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: {{ .Values.persistence.podcasts.existingClaim | default (printf "%s-podcasts" (include "audiobookshelf.fullname" .)) }}
|
||||||
|
{{- else }}
|
||||||
|
emptyDir: {}
|
||||||
|
{{- end }}
|
||||||
{{- range .Values.persistentVolumeClaims }}
|
{{- range .Values.persistentVolumeClaims }}
|
||||||
- name: {{ .name }}
|
- name: {{ .name }}
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
|
Loading…
Reference in New Issue
Block a user