Merge pull request #71199 from k-toyoda-pi/fix_node_authn_e2e_test

e2e/auth: fix NodeAuthenticator tests not working
This commit is contained in:
Kubernetes Prow Robot
2019-01-10 02:31:28 -08:00
committed by GitHub

View File

@@ -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,
},