From 3bc6ceac385857a6dd292e130b967fcc84842bd7 Mon Sep 17 00:00:00 2001 From: Antoine Pelisse Date: Mon, 21 Aug 2017 13:24:27 -0700 Subject: [PATCH] Skip "Simple pod should support exec through kubectl proxy" test As reported in https://github.com/kubernetes/kubernetes/issues/50466, this test doesn't work in GKE because the transport layer doesn't work with dialing. As the feature that is broken in GKE is new and didn't work before, it is safe to juste ignore the test and consider the feature as "still not working" in GKE. --- test/e2e/kubectl/kubectl.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/kubectl/kubectl.go b/test/e2e/kubectl/kubectl.go index fc1b597b914..bfd48698689 100644 --- a/test/e2e/kubectl/kubectl.go +++ b/test/e2e/kubectl/kubectl.go @@ -431,6 +431,8 @@ var _ = SIGDescribe("Kubectl client", func() { }) It("should support exec through kubectl proxy", func() { + Skip("kubernetes/kubernetes#50466: This feature doesn't work for anything but client certs authentication.") + // Fail if the variable isn't set if framework.TestContext.Host == "" { framework.Failf("--host variable must be set to the full URI to the api server on e2e run.")