From ab7cf2458598232f1a08a21967c26523238bcbef Mon Sep 17 00:00:00 2001 From: "Dr. Stefan Schimanski" Date: Wed, 11 Sep 2019 12:49:45 +0200 Subject: [PATCH] e2e: fix pause command in ProxyMode func The agn image has no pause command, only a pause subcommand of the agn command. --- test/e2e/framework/util.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 49b6ee13abd..30be1db09c9 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -469,9 +469,9 @@ func ProxyMode(f *Framework) (string, error) { HostNetwork: true, Containers: []v1.Container{ { - Name: "detector", - Image: AgnHostImage, - Command: []string{"pause"}, + Name: "detector", + Image: AgnHostImage, + Args: []string{"pause"}, }, }, },