From 978ba06f8c5b1290466ff6ac4a8f26fe2bc058d5 Mon Sep 17 00:00:00 2001 From: CJ Cullen Date: Tue, 13 Jun 2017 17:31:16 -0700 Subject: [PATCH] Don't test the debug /logs endpoint on GKE. --- test/e2e/networking.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/e2e/networking.go b/test/e2e/networking.go index 9834a5efcb..9067e1f46e 100644 --- a/test/e2e/networking.go +++ b/test/e2e/networking.go @@ -59,12 +59,14 @@ var _ = framework.KubeDescribe("Networking", func() { {path: "/healthz"}, {path: "/api"}, {path: "/apis"}, - {path: "/logs"}, {path: "/metrics"}, {path: "/swaggerapi"}, {path: "/version"}, // TODO: test proxy links here } + if !framework.ProviderIs("gke") { + tests = append(tests, struct{ path string }{path: "/logs"}) + } for _, test := range tests { By(fmt.Sprintf("testing: %s", test.path)) data, err := f.ClientSet.Core().RESTClient().Get().