Skip to content

Commit 90f4195

Browse files
authored
Merge pull request kubernetes#82420 from openSUSE/e2e-fix
Fix wrong command in e2e agnhost utility function
2 parents e682310 + c8b656d commit 90f4195

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/e2e/framework/util.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,9 +475,9 @@ func ProxyMode(f *Framework) (string, error) {
475475
HostNetwork: true,
476476
Containers: []v1.Container{
477477
{
478-
Name: "detector",
479-
Image: AgnHostImage,
480-
Command: []string{"pause"},
478+
Name: "detector",
479+
Image: AgnHostImage,
480+
Args: []string{"pause"},
481481
},
482482
},
483483
},

0 commit comments

Comments
 (0)