Merge pull request #93930 from pohly/multi-volume-generic-ephemeral-test-fix

e2e storage: skip multi-volume generic ephemeral volume test
This commit is contained in:
Kubernetes Prow Robot 2020-09-10 02:33:45 -07:00 committed by GitHub
commit c3b888f647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -215,6 +215,11 @@ func (p *ephemeralTestSuite) DefineTests(driver TestDriver, pattern testpatterns
})
ginkgo.It("should support multiple inline ephemeral volumes", func() {
if pattern.BindingMode == storagev1.VolumeBindingImmediate &&
pattern.VolType == testpatterns.GenericEphemeralVolume {
e2eskipper.Skipf("Multiple generic ephemeral volumes with immediate binding may cause pod startup failures when the volumes get created in separate topology segments.")
}
init()
defer cleanup()