chore: add default values for storage class and capacity to VolSync PVC.

This commit is contained in:
2026-02-26 16:47:45 +01:00
parent 659039b375
commit 809df95f0e

View File

@@ -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}"