mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 19:01:49 +00:00
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:
parent
3352c44949
commit
fcaf580c9b
@ -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",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user