From 52959b4bcba9cf72c51f1f45c039981da9afb033 Mon Sep 17 00:00:00 2001 From: toyoda Date: Mon, 19 Nov 2018 15:40:17 +0900 Subject: [PATCH] e2e/auth: fix NodeAuthenticator tests not working --- test/e2e/auth/node_authn.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/auth/node_authn.go b/test/e2e/auth/node_authn.go index 117bbd469f9..5afdc7c9fb0 100644 --- a/test/e2e/auth/node_authn.go +++ b/test/e2e/auth/node_authn.go @@ -68,7 +68,7 @@ var _ = SIGDescribe("[Feature:NodeAuthenticator]", func() { newSA := &v1.ServiceAccount{ ObjectMeta: metav1.ObjectMeta{ Namespace: ns, - Name: "node-auth-newSA", + Name: "node-auth-newsa", }, AutomountServiceAccountToken: &trueValue, } @@ -98,7 +98,7 @@ func createNodeAuthTestPod(f *framework.Framework) *v1.Pod { Containers: []v1.Container{{ Name: "test-node-authn", Image: imageutils.GetE2EImage(imageutils.Hostexec), - Command: []string{"sleep 3600"}, + Command: []string{"sleep", "3600"}, }}, RestartPolicy: v1.RestartPolicyNever, },