mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #90615 from dims/drop-conformance-tag-for-tests-that-rely-directly-on-kubelet-logs-api
Drop conformance tag for tests that rely directly on kubelet /logs API
This commit is contained in:
commit
6b594c25c8
14
test/conformance/testdata/conformance.yaml
vendored
14
test/conformance/testdata/conformance.yaml
vendored
@ -1569,20 +1569,6 @@
|
||||
other platforms like Windows.
|
||||
release: v1.9
|
||||
file: test/e2e/common/networking.go
|
||||
- testname: Proxy, logs endpoint
|
||||
codename: '[sig-network] Proxy version v1 should proxy logs on node using proxy
|
||||
subresource [Conformance]'
|
||||
description: Select any node in the cluster to invoke /proxy/nodes/<nodeip>//logs
|
||||
endpoint. This endpoint MUST be reachable.
|
||||
release: v1.9
|
||||
file: test/e2e/network/proxy.go
|
||||
- testname: Proxy, logs port endpoint
|
||||
codename: '[sig-network] Proxy version v1 should proxy logs on node with explicit
|
||||
kubelet port using proxy subresource [Conformance]'
|
||||
description: Select any node in the cluster to invoke /proxy/nodes/<nodeip>:10250/logs
|
||||
endpoint. This endpoint MUST be reachable.
|
||||
release: v1.9
|
||||
file: test/e2e/network/proxy.go
|
||||
- testname: Proxy, logs service endpoint
|
||||
codename: '[sig-network] Proxy version v1 should proxy through a service and a pod [Conformance]'
|
||||
description: Select any node in the cluster to invoke /logs endpoint using the
|
||||
|
@ -64,18 +64,16 @@ var _ = SIGDescribe("Proxy", func() {
|
||||
prefix := "/api/" + version
|
||||
|
||||
/*
|
||||
Release : v1.9
|
||||
Testname: Proxy, logs port endpoint
|
||||
Description: Select any node in the cluster to invoke /proxy/nodes/<nodeip>:10250/logs endpoint. This endpoint MUST be reachable.
|
||||
Test for Proxy, logs port endpoint
|
||||
Select any node in the cluster to invoke /proxy/nodes/<nodeip>:10250/logs endpoint. This endpoint MUST be reachable.
|
||||
*/
|
||||
framework.ConformanceIt("should proxy logs on node with explicit kubelet port using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", ":10250/proxy/logs/") })
|
||||
ginkgo.It("should proxy logs on node with explicit kubelet port using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", ":10250/proxy/logs/") })
|
||||
|
||||
/*
|
||||
Release : v1.9
|
||||
Testname: Proxy, logs endpoint
|
||||
Description: Select any node in the cluster to invoke /proxy/nodes/<nodeip>//logs endpoint. This endpoint MUST be reachable.
|
||||
Test for Proxy, logs endpoint
|
||||
Select any node in the cluster to invoke /proxy/nodes/<nodeip>//logs endpoint. This endpoint MUST be reachable.
|
||||
*/
|
||||
framework.ConformanceIt("should proxy logs on node using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", "/proxy/logs/") })
|
||||
ginkgo.It("should proxy logs on node using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", "/proxy/logs/") })
|
||||
|
||||
// using the porter image to serve content, access the content
|
||||
// (of multiple pods?) from multiple (endpoints/services?)
|
||||
|
Loading…
Reference in New Issue
Block a user