diff --git a/roles/jellyfin/files/jellyfin-deployment.yaml b/roles/jellyfin/files/jellyfin-deployment.yaml index d29219d..f87a4bf 100644 --- a/roles/jellyfin/files/jellyfin-deployment.yaml +++ b/roles/jellyfin/files/jellyfin-deployment.yaml @@ -47,6 +47,8 @@ spec: mountPath: /config - name: videos mountPath: /videos + - name: books + mountPath: /books volumes: - name: config persistentVolumeClaim: @@ -54,6 +56,9 @@ spec: - name: videos persistentVolumeClaim: claimName: jellyfin-videos-pvc + - name: books + persistentVolumeClaim: + claimName: jellyfin-books-pvc diff --git a/roles/jellyfin/files/jellyfin-pvcs.yaml b/roles/jellyfin/files/jellyfin-pvcs.yaml index 1489d8c..080f351 100644 --- a/roles/jellyfin/files/jellyfin-pvcs.yaml +++ b/roles/jellyfin/files/jellyfin-pvcs.yaml @@ -60,4 +60,34 @@ spec: resources: requests: storage: 150Gi +--- +apiVersion: v1 +kind: PersistentVolume +metadata: + name: jellyfin-books-pv + namespace: stack-arr +spec: + capacity: + storage: 150Gi + storageClassName: jellyfin-videos-nfs-csi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + nfs: + server: 192.168.1.22 + path: /mnt/fenix-main-nas-pool-0/data/Filmes_e_Series/Livros +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: jellyfin-books-pvc + namespace: stack-arr +spec: + storageClassName: jellyfin-videos-nfs-csi + accessModes: + - ReadWriteOnce + volumeName: jellyfin-books-pv + resources: + requests: + storage: 150Gi --- \ No newline at end of file diff --git a/roles/mangareader/files/mangareader-deployment.yaml b/roles/mangareader/files/mangareader-deployment.yaml index c4a506f..50f4b7a 100644 --- a/roles/mangareader/files/mangareader-deployment.yaml +++ b/roles/mangareader/files/mangareader-deployment.yaml @@ -17,7 +17,7 @@ spec: - name: regcred containers: - name: mangareader - image: ghcr.io/suwayomi/tachidesk:v2.1.2060 + image: ghcr.io/suwayomi/tachidesk:v2.1.2061 securityContext: capabilities: add: @@ -68,7 +68,7 @@ spec: key: password volumeMounts: - name: config - mountPath: /config + mountPath: /home/suwayomi/.local/share/Tachidesk - name: books mountPath: /books - name: downloads