Skip to content

Commit

Permalink
e2e storage: skip multi-volume generic ephemeral volume test
Browse files Browse the repository at this point in the history
This test might flake when run on a multi-zone cluster (similar to
persistent volumes, see
#75776). We don't do
that at the moment, but it's better to fix this anyway.
  • Loading branch information
pohly committed Aug 12, 2020
1 parent a640545 commit 441324e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/e2e/storage/testsuites/ephemeral.go
Expand Up @@ -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()

Expand Down

0 comments on commit 441324e

Please sign in to comment.