mirror of
https://gitea.fenix-dev.com/fenix-gitea-admin/iac-ansible-private.git
synced 2026-03-22 04:19:48 +00:00
BOOKS
This commit is contained in:
@ -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
|
||||
|
||||
|
||||
|
||||
|
||||
@ -61,3 +61,33 @@ spec:
|
||||
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
|
||||
---
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user