From 6de8032113c073c0c70ba7949999c7e17850ecb3 Mon Sep 17 00:00:00 2001 From: Isaac Hollander McCreery Date: Tue, 23 Jun 2015 09:36:29 -0700 Subject: [PATCH] Update kubectl test to include changes to rolling update --- test/e2e/kubectl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/kubectl.go b/test/e2e/kubectl.go index c69785fb6c5..538eeac4b9f 100644 --- a/test/e2e/kubectl.go +++ b/test/e2e/kubectl.go @@ -102,7 +102,7 @@ var _ = Describe("Kubectl client", func() { By("rolling-update to new replication controller") runKubectl("rolling-update", "update-demo-nautilus", "--update-period=1s", "-f", kittenPath, fmt.Sprintf("--namespace=%v", ns)) // TODO: revisit the expected replicas once #9645 is resolved - validateController(c, kittenImage, 1, "update-demo", updateDemoSelector, getUDData("kitten.jpg", ns), ns) + validateController(c, kittenImage, 4, "update-demo", updateDemoSelector, getUDData("kitten.jpg", ns), ns) // Everything will hopefully be cleaned up when the namespace is deleted. }) })