Commit bd3cde0e authored by Brian Grant's avatar Brian Grant

Mark flaky Deployment e2e tests until the problems are resolved.

Ref #21463, #21467, #21491, #19299
parent 95354490
...@@ -54,16 +54,16 @@ var _ = Describe("Deployment", func() { ...@@ -54,16 +54,16 @@ var _ = Describe("Deployment", func() {
It("deployment should delete old replica sets", func() { It("deployment should delete old replica sets", func() {
testDeploymentCleanUpPolicy(f) testDeploymentCleanUpPolicy(f)
}) })
It("deployment should support rollover", func() { It("[Flaky] deployment should support rollover", func() {
testRolloverDeployment(f) testRolloverDeployment(f)
}) })
It("paused deployment should be ignored by the controller", func() { It("[Flaky] paused deployment should be ignored by the controller", func() {
testPausedDeployment(f) testPausedDeployment(f)
}) })
It("deployment should support rollback", func() { It("[Flaky] deployment should support rollback", func() {
testRollbackDeployment(f) testRollbackDeployment(f)
}) })
It("deployment should support rollback when there's replica set with no revision", func() { It("[Flaky] deployment should support rollback when there's replica set with no revision", func() {
testRollbackDeploymentRSNoRevision(f) testRollbackDeploymentRSNoRevision(f)
}) })
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment