7e1847a5ac
- 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
12 lines
210 B
YAML
12 lines
210 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: myvolume
|
|
namespace: default
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: 450Gi
|
|
storageClassName: nfs-client |