test: Remove final user of startup-script image

It can be replaced with nc in busybox like other tests.
This commit is contained in:
Clayton Coleman
2020-03-26 22:31:02 -04:00
parent 708dd2ea7a
commit acb242f99c
2 changed files with 8 additions and 10 deletions

View File

@@ -229,7 +229,7 @@ var _ = SIGDescribe("Network", func() {
// a problem where spurious retransmits in a long-running TCP connection to a service
// IP could result in the connection being closed with the error "Connection reset by
// peer"
ginkgo.It("should resolve connrection reset issue #74839 [Slow]", func() {
ginkgo.It("should resolve connection reset issue #74839 [Slow]", func() {
serverLabel := map[string]string{
"app": "boom-server",
}
@@ -304,7 +304,7 @@ var _ = SIGDescribe("Network", func() {
Containers: []v1.Container{
{
Name: "startup-script",
Image: imageutils.GetE2EImage(imageutils.StartupScript),
Image: imageutils.GetE2EImage(imageutils.BusyBox),
Command: []string{
"bash", "-c", "while true; do sleep 2; nc boom-server 9000& done",
},