From 809df95f0e34001bba3f262b4886455dbc468ac6 Mon Sep 17 00:00:00 2001 From: Laur IVAN Date: Thu, 26 Feb 2026 16:47:45 +0100 Subject: [PATCH] chore: add default values for storage class and capacity to VolSync PVC. --- kubernetes/components/volsync/pvc.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes/components/volsync/pvc.yaml b/kubernetes/components/volsync/pvc.yaml index d0c590e..50a9ef4 100644 --- a/kubernetes/components/volsync/pvc.yaml +++ b/kubernetes/components/volsync/pvc.yaml @@ -7,7 +7,7 @@ metadata: annotations: kustomize.toolkit.fluxcd.io/prune: disabled spec: - storageClassName: "${VOLSYNC_STORAGECLASS}" + storageClassName: "${VOLSYNC_STORAGECLASS:=openebs-hostpath}" accessModes: ["${VOLSYNC_ACCESSMODES:=ReadWriteOnce}"] dataSourceRef: @@ -17,4 +17,4 @@ spec: resources: requests: - storage: "${VOLSYNC_CAPACITY}" + storage: "${VOLSYNC_CAPACITY:=5Gi}"