File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed
manifests/supervisorcluster Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -571,7 +571,6 @@ data:
571
571
" sv-pvc-snapshot-protection-finalizer " : " false"
572
572
" file-volume-with-vm-service " : " false"
573
573
" csi-transaction-support " : " false"
574
- " vol-from-snapshot-on-target-ds " : " false"
575
574
" linked-clone-support " : " false"
576
575
kind : ConfigMap
577
576
metadata :
Original file line number Diff line number Diff line change @@ -571,7 +571,6 @@ data:
571
571
" sv-pvc-snapshot-protection-finalizer " : " false"
572
572
" file-volume-with-vm-service " : " false"
573
573
" csi-transaction-support " : " false"
574
- " vol-from-snapshot-on-target-ds " : " false"
575
574
" linked-clone-support " : " false"
576
575
kind : ConfigMap
577
576
metadata :
Original file line number Diff line number Diff line change @@ -569,7 +569,6 @@ data:
569
569
" WCP_VMService_BYOK " : " true"
570
570
" sv-pvc-snapshot-protection-finalizer " : " false"
571
571
" file-volume-with-vm-service " : " false"
572
- " vol-from-snapshot-on-target-ds " : " false"
573
572
" linked-clone-support " : " false"
574
573
kind : ConfigMap
575
574
metadata :
Original file line number Diff line number Diff line change @@ -461,8 +461,9 @@ const (
461
461
SharedDiskFss = "supports_shared_disks"
462
462
// CSITranSactionSupport is an FSS for transaction support
463
463
CSITranSactionSupport = "csi-transaction-support"
464
- // VolFromSnapshotOnTargetDs enables creation of volumes from snapshots on different datastores
465
- VolFromSnapshotOnTargetDs = "vol-from-snapshot-on-target-ds"
464
+ // VolFromSnapshotOnTargetDs is a FSS that tells whether creation of volumes from
465
+ // snapshots on different datastores feature is supported in CSI.
466
+ VolFromSnapshotOnTargetDs = "supports_vol_from_snapshot_on_target_ds"
466
467
// LinkedCloneSupport is an FSS that tells whether LinkedClone feature is supported in CSI.
467
468
LinkedCloneSupport = "linked-clone-support"
468
469
)
@@ -472,6 +473,7 @@ var WCPFeatureStates = map[string]struct{}{
472
473
CSIDetachOnSupervisor : {},
473
474
WorkloadDomainIsolation : {},
474
475
VPCCapabilitySupervisor : {},
476
+ VolFromSnapshotOnTargetDs : {},
475
477
}
476
478
477
479
// WCPFeatureStatesSupportsLateEnablement contains capabilities that can be enabled later
You can’t perform that action at this time.
0 commit comments