feat: add myvolume PVC for Bananaspliff charts compatibility

- Create myvolume PVC required by Bananaspliff Radarr/Sonarr charts
- Uses nfs-client storage class with 450Gi capacity
- Enables Radarr and Sonarr pods to schedule and run successfully
- Maintains compatibility with existing Bananaspliff chart structure
This commit is contained in:
gilgamezh
2025-08-15 17:50:56 +02:00
parent 64b7624e74
commit 7e1847a5ac
+12
View File
@@ -0,0 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: myvolume
namespace: default
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: 450Gi
storageClassName: nfs-client