moved sonarr/radarr metadata to hostpath

This commit is contained in:
2026-03-01 08:00:34 +01:00
parent c3a06955bd
commit 5cf2d2b433
+19 -1
View File
@@ -121,6 +121,8 @@ spec:
mountPath: /config mountPath: /config
- name: movies - name: movies
mountPath: /mnt/2_hdd mountPath: /mnt/2_hdd
- name: mediacover # <-- NEW
mountPath: /config/MediaCover # <-- NEW
securityContext: securityContext:
fsGroup: 1000 fsGroup: 1000
volumes: volumes:
@@ -131,6 +133,10 @@ spec:
hostPath: hostPath:
path: /mnt/2_hdd path: /mnt/2_hdd
type: Directory type: Directory
- name: mediacover # <-- NEW
hostPath: # <-- NEW
path: /mnt/4_hdd/data/servarr/radarr/MediaCover # <-- NEW
type: DirectoryOrCreate # <-- NEW
--- ---
# Sonarr - TV Show Manager # Sonarr - TV Show Manager
apiVersion: apps/v1 apiVersion: apps/v1
@@ -191,6 +197,8 @@ spec:
mountPath: /mnt/1_hdd mountPath: /mnt/1_hdd
- name: tv2 - name: tv2
mountPath: /mnt/5_hdd mountPath: /mnt/5_hdd
- name: mediacover # <-- NEW
mountPath: /config/MediaCover # <-- NEW
securityContext: securityContext:
fsGroup: 1000 fsGroup: 1000
volumes: volumes:
@@ -205,6 +213,10 @@ spec:
hostPath: hostPath:
path: /mnt/5_hdd path: /mnt/5_hdd
type: Directory type: Directory
- name: mediacover # <-- NEW
hostPath: # <-- NEW
path: /mnt/4_hdd/data/servarr/sonarr/MediaCover # <-- NEW
type: DirectoryOrCreate # <-- NEW
--- ---
# qBittorrent - Download Client # qBittorrent - Download Client
apiVersion: apps/v1 apiVersion: apps/v1
@@ -667,7 +679,7 @@ spec:
storage: 1Gi storage: 1Gi
storageClassName: longhorn storageClassName: longhorn
--- ---
# Radarr - Movie Manager # RadarrKids - Movie Manager
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
@@ -728,6 +740,8 @@ spec:
subPath: 99-custom-logo.sh subPath: 99-custom-logo.sh
- name: custom-logo-assets - name: custom-logo-assets
mountPath: /custom-assets mountPath: /custom-assets
- name: mediacover # <-- NEW
mountPath: /config/MediaCover # <-- NEW
securityContext: securityContext:
fsGroup: 1000 fsGroup: 1000
volumes: volumes:
@@ -753,6 +767,10 @@ spec:
path: logo.png path: logo.png
- key: logo-full.png - key: logo-full.png
path: logo-full.png path: logo-full.png
- name: mediacover # <-- NEW
hostPath: # <-- NEW
path: /mnt/4_hdd/data/servarr/radarrkids/MediaCover # <-- NEW
type: DirectoryOrCreate # <-- NEW
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service