fix(plex): move video thumbnails to host path mount
This commit is contained in:
parent
aca83263c8
commit
961b72389c
1 changed files with 7 additions and 6 deletions
|
@ -98,7 +98,6 @@ spec:
|
|||
persistence:
|
||||
config:
|
||||
#existingClaim: plex
|
||||
# TODO: If setting up Plex for the first time, you'll want to add the globalMounts section
|
||||
type: persistentVolumeClaim
|
||||
size: 100Gi
|
||||
retain: true
|
||||
|
@ -106,7 +105,6 @@ spec:
|
|||
accessMode: ReadWriteOnce
|
||||
globalMounts:
|
||||
- path: /config/Library/Application Support/Plex Media Server
|
||||
|
||||
# Separate PVC for cache to avoid backing up cache files
|
||||
cache:
|
||||
type: persistentVolumeClaim
|
||||
|
@ -116,18 +114,21 @@ spec:
|
|||
accessMode: ReadWriteOnce
|
||||
globalMounts:
|
||||
- path: /config/Library/Application Support/Plex Media Server/Cache
|
||||
|
||||
logs:
|
||||
type: emptyDir
|
||||
globalMounts:
|
||||
- path: /config/Library/Application Support/Plex Media Server/Logs
|
||||
|
||||
# Store video thumbnails somewhere else so they're not backed up
|
||||
server-media:
|
||||
hostPath: /mnt/MainPool/Media/Plex/Media
|
||||
globalMounts:
|
||||
- path: /config/Library/Application Support/Plex Media Server/Media
|
||||
tmp:
|
||||
type: emptyDir
|
||||
|
||||
transcode:
|
||||
type: emptyDir
|
||||
|
||||
globalMounts:
|
||||
- path: /transcode
|
||||
media:
|
||||
type: hostPath
|
||||
hostPath: /mnt/MainPool/Media/Media
|
||||
|
|
Loading…
Add table
Reference in a new issue