From 4d757f1c527b28c3cd963329e4add239ddcfb60c Mon Sep 17 00:00:00 2001 From: jay vyas Date: Sun, 17 Jan 2021 13:42:41 -0500 Subject: [PATCH] remove weird pause args from this networking.go, that break the periodic sig-network tests --- test/e2e/network/networking.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/network/networking.go b/test/e2e/network/networking.go index eb6b67f3688..ad41048faee 100644 --- a/test/e2e/network/networking.go +++ b/test/e2e/network/networking.go @@ -52,6 +52,7 @@ func checkConnectivityToHost(f *framework.Framework, nodeName, podName, host str pod := e2epod.NewAgnhostPod(f.Namespace.Name, podName, nil, nil, nil) pod.Spec.Containers[0].Command = command + pod.Spec.Containers[0].Args = nil // otherwise 'pause` is magically an argument to nc, which causes all hell to break loose pod.Spec.NodeName = nodeName pod.Spec.RestartPolicy = v1.RestartPolicyNever