fix: restore original volume mount configuration for Radarr and Sonarr

- Use original volumes/volumeMounts structure instead of persistence
- Mount plex-data PVC to /config with correct subPath
- Restore exact working configuration from before ArgoCD migration

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
gilgamezh
2025-08-15 18:09:43 +02:00
parent bf63967cfd
commit 9ab532c2b4
2 changed files with 18 additions and 14 deletions
+9 -7
View File
@@ -18,14 +18,16 @@ service:
type: ClusterIP type: ClusterIP
port: 7878 port: 7878
persistence: volumes:
config: - name: "plex-data"
enabled: true persistentVolumeClaim:
existingClaim: "plex-data" claimName: "plex-data"
volumeMounts:
- name: "plex-data"
mountPath: "/config"
subPath: "configs/radarr" subPath: "configs/radarr"
media: - name: "plex-data"
enabled: true
existingClaim: "plex-data"
mountPath: "/nfs" mountPath: "/nfs"
resources: resources:
+9 -7
View File
@@ -18,14 +18,16 @@ service:
type: ClusterIP type: ClusterIP
port: 8989 port: 8989
persistence: volumes:
config: - name: plex-data
enabled: true persistentVolumeClaim:
existingClaim: "plex-data" claimName: "plex-data"
volumeMounts:
- name: plex-data
mountPath: "/config"
subPath: "configs/sonarr" subPath: "configs/sonarr"
media: - name: "plex-data"
enabled: true
existingClaim: "plex-data"
mountPath: "/nfs" mountPath: "/nfs"
resources: resources: