Skip to content

Commit

Permalink
Fix disruptive subPath test failures
Browse files Browse the repository at this point in the history
This PR fixes two distruptive subpath test failures.

1. disable --check-volume-lifecycle check
2. skip hostpath driver tests on graceful pod deletion test too.

See details in
kubernetes#103651 (comment)

Change-Id: Ibecd051be865feea5f2a92d22ade848367400939
  • Loading branch information
jingxu97 authored and msau42 committed Jul 30, 2021
1 parent 4aec24e commit c37bf8c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/e2e/storage/testsuites/subpath.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,11 @@ func (s *subPathTestSuite) DefineTests(driver storageframework.TestDriver, patte
init()
defer cleanup()

if strings.HasPrefix(driverName, "hostPath") {
// TODO: This skip should be removed once #61446 is fixed
e2eskipper.Skipf("Driver %s does not support reconstruction, skipping", driverName)
}

testSubpathReconstruction(f, l.hostExec, l.pod, false)
})

Expand Down

0 comments on commit c37bf8c

Please sign in to comment.