mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-04 01:40:07 +00:00
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
This commit is contained in:
parent
41f928f930
commit
9d448494b2
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user