Files
turingpi/myvolume-pvc.yaml
T
gilgamezh 7e1847a5ac 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
2025-08-15 17:50:56 +02:00

12 lines
210 B
YAML

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: myvolume
namespace: default
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: 450Gi
storageClassName: nfs-client