From fcaf580c9b4ae0f90812de4d131ca440b4f4660e Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Wed, 19 Aug 2020 22:45:21 +0200 Subject: [PATCH] fix e2e test the test is not working because is trying to execute bash in a busybox image, that is not present. Using sh works. --- test/e2e/network/kube_proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/network/kube_proxy.go b/test/e2e/network/kube_proxy.go index 439b8015dc2..aaff522ed0e 100644 --- a/test/e2e/network/kube_proxy.go +++ b/test/e2e/network/kube_proxy.go @@ -313,7 +313,7 @@ var _ = SIGDescribe("Network", func() { Name: "startup-script", Image: imageutils.GetE2EImage(imageutils.BusyBox), Command: []string{ - "bash", "-c", "while true; do sleep 2; nc boom-server 9000& done", + "sh", "-c", "while true; do sleep 2; nc boom-server 9000& done", }, }, },