Automated Manifest Update #4691
@@ -72,17 +72,32 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /mnt/store/
|
- mountPath: /mnt/store/
|
||||||
name: audiobooks
|
name: audiobooks
|
||||||
|
- mountPath: /mnt/Audiobooks
|
||||||
|
name: audiobooks-data
|
||||||
|
- mountPath: /mnt/Books
|
||||||
|
name: books-data
|
||||||
- mountPath: /config
|
- mountPath: /config
|
||||||
name: config
|
name: config
|
||||||
- mountPath: /metadata
|
- mountPath: /metadata
|
||||||
name: metadata
|
name: metadata
|
||||||
|
- mountPath: /mnt/Podcasts
|
||||||
|
name: podcasts-data
|
||||||
volumes:
|
volumes:
|
||||||
- name: audiobooks
|
- name: audiobooks
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: audiobookshelf-nfs-storage
|
claimName: audiobookshelf-nfs-storage
|
||||||
|
- name: audiobooks-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: audiobookshelf-audiobooks
|
||||||
|
- name: books-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: audiobookshelf-books
|
||||||
- name: config
|
- name: config
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: audiobookshelf-config
|
claimName: audiobookshelf-config
|
||||||
- name: metadata
|
- name: metadata
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: audiobookshelf-metadata
|
claimName: audiobookshelf-metadata
|
||||||
|
- name: podcasts-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: audiobookshelf-podcasts-nfs-storage
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolume
|
||||||
|
metadata:
|
||||||
|
name: audiobookshelf-podcasts-nfs-storage
|
||||||
|
namespace: audiobookshelf
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: audiobookshelf-podcasts-nfs-storage
|
||||||
|
app.kubernetes.io/instance: audiobookshelf
|
||||||
|
app.kubernetes.io/part-of: audiobookshelf
|
||||||
|
spec:
|
||||||
|
persistentVolumeReclaimPolicy: Retain
|
||||||
|
storageClassName: nfs-client
|
||||||
|
capacity:
|
||||||
|
storage: 1Gi
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteMany
|
||||||
|
nfs:
|
||||||
|
path: /volume2/Storage/Podcasts
|
||||||
|
server: synologybond.alexlebens.net
|
||||||
|
mountOptions:
|
||||||
|
- vers=4
|
||||||
|
- minorversion=1
|
||||||
|
- noac
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
kind: PersistentVolumeClaim
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: audiobookshelf-audiobooks
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/instance: audiobookshelf
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
app.kubernetes.io/name: audiobookshelf
|
||||||
|
helm.sh/chart: audiobookshelf-4.6.2
|
||||||
|
annotations:
|
||||||
|
helm.sh/resource-policy: keep
|
||||||
|
namespace: audiobookshelf
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- "ReadWriteOnce"
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: "40Gi"
|
||||||
|
storageClassName: "ceph-block"
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
kind: PersistentVolumeClaim
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: audiobookshelf-books
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/instance: audiobookshelf
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
app.kubernetes.io/name: audiobookshelf
|
||||||
|
helm.sh/chart: audiobookshelf-4.6.2
|
||||||
|
annotations:
|
||||||
|
helm.sh/resource-policy: keep
|
||||||
|
namespace: audiobookshelf
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- "ReadWriteOnce"
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: "10Gi"
|
||||||
|
storageClassName: "ceph-block"
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: audiobookshelf-podcasts-nfs-storage
|
||||||
|
namespace: audiobookshelf
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: audiobookshelf-podcasts-nfs-storage
|
||||||
|
app.kubernetes.io/instance: audiobookshelf
|
||||||
|
app.kubernetes.io/part-of: audiobookshelf
|
||||||
|
spec:
|
||||||
|
volumeName: audiobookshelf-podcasts-nfs-storage
|
||||||
|
storageClassName: nfs-client
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteMany
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 1Gi
|
||||||
Reference in New Issue
Block a user