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.
This commit is contained in:
Antonio Ojea 2020-08-19 22:45:21 +02:00
parent 3352c44949
commit fcaf580c9b

View File

@ -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",
},
},
},