Merge pull request #82420 from openSUSE/e2e-fix

Fix wrong command in e2e agnhost utility function
This commit is contained in:
Kubernetes Prow Robot 2019-09-06 17:41:20 -07:00 committed by GitHub
commit 90f41951cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -475,9 +475,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"},
},
},
},