diff --git a/test/e2e/deployment.go b/test/e2e/deployment.go index bd9924a0b8a..138bb0bdc67 100644 --- a/test/e2e/deployment.go +++ b/test/e2e/deployment.go @@ -34,13 +34,13 @@ var _ = Describe("Deployment", func() { It("deployment should create new pods", func() { testNewDeployment(f) }) - It("deployment should delete old pods and create new ones", func() { + It("deployment should delete old pods and create new ones [Flaky]", func() { testRollingUpdateDeployment(f) }) - It("deployment should scale up and down in the right order", func() { + It("deployment should scale up and down in the right order [Flaky]", func() { testRollingUpdateDeploymentEvents(f) }) - It("deployment should support rollover", func() { + It("deployment should support rollover [Flaky]", func() { testRolloverDeployment(f) }) })