fix: correct persistence configuration for Bananaspliff charts

- Fix Radarr and Sonarr values to use Bananaspliff chart structure
- Use persistence.config and persistence.media instead of volumes/volumeMounts
- Reference existing plex-data PVC with proper subPaths
- Fixes FailedScheduling due to missing 'myvolume' PVC
This commit is contained in:
gilgamezh
2025-08-15 17:47:08 +02:00
parent 06e284a1e0
commit 64b7624e74
2 changed files with 14 additions and 18 deletions
+7 -9
View File
@@ -18,16 +18,14 @@ service:
type: ClusterIP
port: 7878
volumes:
- name: "plex-data"
persistentVolumeClaim:
claimName: "plex-data"
volumeMounts:
- name: "plex-data"
mountPath: "/config"
persistence:
config:
enabled: true
existingClaim: "plex-data"
subPath: "configs/radarr"
- name: "plex-data"
media:
enabled: true
existingClaim: "plex-data"
mountPath: "/nfs"
resources:
+7 -9
View File
@@ -18,16 +18,14 @@ service:
type: ClusterIP
port: 8989
volumes:
- name: plex-data
persistentVolumeClaim:
claimName: "plex-data"
volumeMounts:
- name: plex-data
mountPath: "/config"
persistence:
config:
enabled: true
existingClaim: "plex-data"
subPath: "configs/sonarr"
- name: "plex-data"
media:
enabled: true
existingClaim: "plex-data"
mountPath: "/nfs"
resources: