Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions openshift-hack/e2e/annotate/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ var (

// https://bugzilla.redhat.com/show_bug.cgi?id=1953478
`\[sig-storage\] Dynamic Provisioning Invalid AWS KMS key should report an error and create no PV`,

// https://issues.redhat.com/browse/OCPBUGS-72531
`\[sig-storage\] Pod Disks \[Feature:StorageProvider\] \[Serial\] attach on previously attached volumes should work`,
},
// tests that need to be temporarily disabled while the rebase is in progress.
"[Disabled:RebaseInProgress]": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ func TestInitStorageAccounts(t *testing.T) {
}

func TestCreateVolume(t *testing.T) {
// https://github.com/kubernetes/kubernetes/issues/129007
t.Skip("skipping test due some Azure API changes and failing ci")
ctrl := gomock.NewController(t)
defer ctrl.Finish()
b := GetTestBlobDiskController(t)
Expand Down Expand Up @@ -111,6 +113,7 @@ func TestCreateVolume(t *testing.T) {
}

func TestDeleteVolume(t *testing.T) {
t.Skip("skipping test due some Azure API changes and failing ci")
ctrl := gomock.NewController(t)
defer ctrl.Finish()
b := GetTestBlobDiskController(t)
Expand Down Expand Up @@ -150,6 +153,7 @@ func TestDeleteVolume(t *testing.T) {
}

func TestCreateVHDBlobDisk(t *testing.T) {
t.Skip("skipping test due some Azure API changes and failing ci")
ctrl := gomock.NewController(t)
defer ctrl.Finish()
b := GetTestBlobDiskController(t)
Expand Down Expand Up @@ -194,6 +198,7 @@ func TestGetAllStorageAccounts(t *testing.T) {
}

func TestEnsureDefaultContainer(t *testing.T) {
t.Skip("skipping test due some Azure API changes and failing ci")
ctrl := gomock.NewController(t)
defer ctrl.Finish()
b := GetTestBlobDiskController(t)
Expand Down Expand Up @@ -233,6 +238,7 @@ func TestEnsureDefaultContainer(t *testing.T) {
}

func TestGetDiskCount(t *testing.T) {
t.Skip("skipping test due some Azure API changes and failing ci")
ctrl := gomock.NewController(t)
defer ctrl.Finish()
b := GetTestBlobDiskController(t)
Expand Down Expand Up @@ -332,6 +338,7 @@ func TestFindSANameForDisk(t *testing.T) {
}

func TestCreateBlobDisk(t *testing.T) {
t.Skip("skipping test due some Azure API changes and failing ci")
ctrl := gomock.NewController(t)
defer ctrl.Finish()
b := GetTestBlobDiskController(t)
Expand Down