Commit 9d448494 authored by Dane LeBlanc's avatar Dane LeBlanc

Skip e2e check for logs API path if provider is local

There is a networking e2e test with the It() description: ``` "should provide unchanging, static URL paths for kubernetes api services" ``` This test performs GETs from the Kubernetes API using various paths, including "/logs". This test for a GET using path "/logs" should be skipped for provider type "skeleton", since this path is unsupported. This change adds "skeleton" to the list of providers for which this test case should be skipped. fixes #53529
parent 41f928f9
...@@ -70,7 +70,7 @@ var _ = SIGDescribe("Networking", func() { ...@@ -70,7 +70,7 @@ var _ = SIGDescribe("Networking", func() {
{path: "/version"}, {path: "/version"},
// TODO: test proxy links here // TODO: test proxy links here
} }
if !framework.ProviderIs("gke") { if !framework.ProviderIs("gke", "skeleton") {
tests = append(tests, struct{ path string }{path: "/logs"}) tests = append(tests, struct{ path string }{path: "/logs"})
} }
for _, test := range tests { for _, test := range tests {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment