Skip to content

Commit fcaf580

Browse files
author
Antonio Ojea
committed
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.
1 parent 3352c44 commit fcaf580

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/network/kube_proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ var _ = SIGDescribe("Network", func() {
313313
Name: "startup-script",
314314
Image: imageutils.GetE2EImage(imageutils.BusyBox),
315315
Command: []string{
316-
"bash", "-c", "while true; do sleep 2; nc boom-server 9000& done",
316+
"sh", "-c", "while true; do sleep 2; nc boom-server 9000& done",
317317
},
318318
},
319319
},

0 commit comments

Comments
 (0)