You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/e2e/network/proxy.go
+6-8Lines changed: 6 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -64,18 +64,16 @@ var _ = SIGDescribe("Proxy", func() {
64
64
prefix:="/api/"+version
65
65
66
66
/*
67
-
Release : v1.9
68
-
Testname: Proxy, logs port endpoint
69
-
Description: Select any node in the cluster to invoke /proxy/nodes/<nodeip>:10250/logs endpoint. This endpoint MUST be reachable.
67
+
Test for Proxy, logs port endpoint
68
+
Select any node in the cluster to invoke /proxy/nodes/<nodeip>:10250/logs endpoint. This endpoint MUST be reachable.
70
69
*/
71
-
framework.ConformanceIt("should proxy logs on node with explicit kubelet port using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", ":10250/proxy/logs/") })
70
+
ginkgo.It("should proxy logs on node with explicit kubelet port using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", ":10250/proxy/logs/") })
72
71
73
72
/*
74
-
Release : v1.9
75
-
Testname: Proxy, logs endpoint
76
-
Description: Select any node in the cluster to invoke /proxy/nodes/<nodeip>//logs endpoint. This endpoint MUST be reachable.
73
+
Test for Proxy, logs endpoint
74
+
Select any node in the cluster to invoke /proxy/nodes/<nodeip>//logs endpoint. This endpoint MUST be reachable.
77
75
*/
78
-
framework.ConformanceIt("should proxy logs on node using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", "/proxy/logs/") })
76
+
ginkgo.It("should proxy logs on node using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", "/proxy/logs/") })
79
77
80
78
// using the porter image to serve content, access the content
81
79
// (of multiple pods?) from multiple (endpoints/services?)
0 commit comments