From 7e1847a5ace8bfb043195af0fed699ee597a8c64 Mon Sep 17 00:00:00 2001 From: gilgamezh Date: Fri, 15 Aug 2025 17:50:56 +0200 Subject: [PATCH] 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 --- myvolume-pvc.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 myvolume-pvc.yaml diff --git a/myvolume-pvc.yaml b/myvolume-pvc.yaml new file mode 100644 index 0000000..506c55f --- /dev/null +++ b/myvolume-pvc.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: myvolume + namespace: default +spec: + accessModes: + - ReadWriteMany + resources: + requests: + storage: 450Gi + storageClassName: nfs-client \ No newline at end of file