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
|
mountPath: /config
|
||||||
- name: videos
|
- name: videos
|
||||||
mountPath: /videos
|
mountPath: /videos
|
||||||
|
- name: books
|
||||||
|
mountPath: /books
|
||||||
volumes:
|
volumes:
|
||||||
- name: config
|
- name: config
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
@ -54,6 +56,9 @@ spec:
|
|||||||
- name: videos
|
- name: videos
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: jellyfin-videos-pvc
|
claimName: jellyfin-videos-pvc
|
||||||
|
- name: books
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: jellyfin-books-pvc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -61,3 +61,33 @@ spec:
|
|||||||
requests:
|
requests:
|
||||||
storage: 150Gi
|
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
|
- name: regcred
|
||||||
containers:
|
containers:
|
||||||
- name: mangareader
|
- name: mangareader
|
||||||
image: ghcr.io/suwayomi/tachidesk:v2.1.2060
|
image: ghcr.io/suwayomi/tachidesk:v2.1.2061
|
||||||
securityContext:
|
securityContext:
|
||||||
capabilities:
|
capabilities:
|
||||||
add:
|
add:
|
||||||
@ -68,7 +68,7 @@ spec:
|
|||||||
key: password
|
key: password
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: config
|
- name: config
|
||||||
mountPath: /config
|
mountPath: /home/suwayomi/.local/share/Tachidesk
|
||||||
- name: books
|
- name: books
|
||||||
mountPath: /books
|
mountPath: /books
|
||||||
- name: downloads
|
- name: downloads
|
||||||
|
|||||||
Reference in New Issue
Block a user