same path hdd
This commit is contained in:
parent
a126c81bc8
commit
b851fb3f7f
6 changed files with 51 additions and 12 deletions
|
@ -65,6 +65,8 @@ spec:
|
|||
subPath: books/ebooks
|
||||
- mountPath: /data/HDD/media
|
||||
name: hdd
|
||||
- mountPath: /data/rclone/__all__
|
||||
name: rclone
|
||||
restartPolicy: Always
|
||||
runtimeClassName: nvidia
|
||||
volumes:
|
||||
|
@ -74,4 +76,7 @@ spec:
|
|||
- name: hdd
|
||||
persistentVolumeClaim:
|
||||
claimName: nfs-hdd-pvc
|
||||
- name: rclone
|
||||
persistentVolumeClaim:
|
||||
claimName: alaskarserver-rclone-pvc
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ spec:
|
|||
- mountPath: /anime
|
||||
name: ssd
|
||||
subPath: anime
|
||||
- mountPath: /data/HDD/media
|
||||
- mountPath: /HDD
|
||||
name: hdd
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolume
|
||||
metadata:
|
||||
|
@ -31,8 +32,20 @@ spec:
|
|||
volumeHandle: nfs-hdd
|
||||
volumeAttributes:
|
||||
server: 192.168.0.200
|
||||
share: /HDD/media
|
||||
|
||||
share: /HDD
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolume
|
||||
metadata:
|
||||
name: alaskarserver-rclone
|
||||
spec:
|
||||
capacity:
|
||||
storage: 3Ti
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
hostPath:
|
||||
path: /mnt/zurg/__all__
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
|
@ -61,4 +74,15 @@ spec:
|
|||
volumeName: nfs-hdd
|
||||
storageClassName: ""
|
||||
---
|
||||
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: alaskarserver-rclone-pvc
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
resources:
|
||||
requests:
|
||||
storage: 3Ti
|
||||
volumeName: alaskarserver-rclone
|
||||
storageClassName: ""
|
||||
|
|
|
@ -40,11 +40,15 @@ spec:
|
|||
- mountPath: /movies
|
||||
name: ssd
|
||||
subPath: movies
|
||||
- mountPath: /downloads/complete
|
||||
name: hdd
|
||||
subPath: transmission/downloads/complete
|
||||
- mountPath: /data/HDD/media
|
||||
# - mountPath: /downloads/complete
|
||||
# name: hdd
|
||||
# subPath: transmission/downloads/complete/
|
||||
# - mountPath: /data/HDD/media
|
||||
# name: hdd
|
||||
- mountPath: /HDD
|
||||
name: hdd
|
||||
- mountPath: /data/rclone/__all__
|
||||
name: rclone
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: ssd
|
||||
|
@ -53,4 +57,6 @@ spec:
|
|||
- name: hdd
|
||||
persistentVolumeClaim:
|
||||
claimName: nfs-hdd-pvc
|
||||
|
||||
- name: rclone
|
||||
persistentVolumeClaim:
|
||||
claimName: alaskarserver-rclone-pvc
|
||||
|
|
|
@ -42,8 +42,10 @@ spec:
|
|||
- mountPath: /downloads/complete
|
||||
name: hdd
|
||||
subPath: transmission/downloads/complete
|
||||
- mountPath: /data/HDD/media
|
||||
- mountPath: /HDD
|
||||
name: hdd
|
||||
- mountPath: /data/rclone/__all__
|
||||
name: rclone
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: ssd
|
||||
|
@ -52,4 +54,6 @@ spec:
|
|||
- name: hdd
|
||||
persistentVolumeClaim:
|
||||
claimName: nfs-hdd-pvc
|
||||
|
||||
- name: rclone
|
||||
persistentVolumeClaim:
|
||||
claimName: alaskarserver-rclone-pvc
|
||||
|
|
|
@ -75,7 +75,7 @@ spec:
|
|||
subPath: configs/transcoding/docker/tdarr/configs
|
||||
- mountPath: /media
|
||||
name: ssd
|
||||
- mountPath: /data/HDD/media
|
||||
- mountPath: /HDD
|
||||
name: hdd
|
||||
- mountPath: /temp
|
||||
name: ssd
|
||||
|
|
Loading…
Reference in a new issue