Skip to content

Commit 118d4c3

Browse files
committed
UPSTREAM: <drop>: Disable volume group snapshot tests
Temporarily disable volume group snapshot (VGS) tests. We need to rebase the external-snapshotter that updates VGS API in an incompatible way (v1beta1 -> v1beta2 without automatic conversion). The API is TechPreviewNoUpgrade, so its breakage won't affect any customer. We need to update all components that provide or use the API while the tests are off, they would fail spectacularly.
1 parent 2fd6eed commit 118d4c3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/e2e/storage/openshift_csi_volumes.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,18 @@ package storage
2020

2121
import (
2222
"k8s.io/kubernetes/test/e2e/framework"
23-
"k8s.io/kubernetes/test/e2e/storage/drivers"
2423
storageframework "k8s.io/kubernetes/test/e2e/storage/framework"
2524
"k8s.io/kubernetes/test/e2e/storage/testsuites"
2625
"k8s.io/kubernetes/test/e2e/storage/utils"
2726
)
2827

2928
// List of testDrivers to be executed in below loop
3029
var ocpCSITestDrivers = []func() storageframework.TestDriver{
31-
drivers.InitGroupSnapshotHostpathCSIDriver,
30+
// STOR-2534: temporarily disable the volume group snapshot test driver
31+
// for external-snapshotter rebase that changes the group snapshot API.
32+
// VolumeGroupSnapshots and its API are a TechPreview in OCP,
33+
// it can't affect any user.
34+
// drivers.InitGroupSnapshotHostpathCSIDriver,
3235
}
3336

3437
// This executes testSuites for csi volumes.

0 commit comments

Comments
 (0)