From fdec0ee1214154cb78265d55681ea6a611e70bd2 Mon Sep 17 00:00:00 2001 From: Claudiu Belu Date: Sun, 23 Feb 2020 02:09:14 -0800 Subject: [PATCH] tests: Create pod for Windows test A previous commit (#88471) changed the createTestPod function, but didn't update the service.go consumer, leading to a pod not being created. --- test/e2e/windows/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/windows/service.go b/test/e2e/windows/service.go index aedf72f011d..0716fa37075 100644 --- a/test/e2e/windows/service.go +++ b/test/e2e/windows/service.go @@ -62,6 +62,7 @@ var _ = SIGDescribe("Services", func() { //using hybrid_network methods ginkgo.By("creating Windows testing Pod") windowsPod := createTestPod(f, windowsBusyBoximage, windowsOS) + windowsPod = f.PodClient().CreateSync(windowsPod) ginkgo.By(fmt.Sprintf("checking connectivity Pod to curl http://%s:%d", nodeIP, nodePort)) assertConsistentConnectivity(f, windowsPod.ObjectMeta.Name, windowsOS, windowsCheck(fmt.Sprintf("http://%s:%d", nodeIP, nodePort)))