Unverified Commit 547d38b1 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #64524 from krzyzacy/release-1.10

Automatic merge from submit-queue. properly skip cadvisor proxy test xref https://github.com/kubernetes/kubernetes/issues/64158 per https://github.com/kubernetes/kubernetes/issues/64158#issuecomment-393229314 /assign @liggitt @AishSundar
parents 44353094 541dfd63
......@@ -85,9 +85,13 @@ var _ = SIGDescribe("Proxy", func() {
subresource.
*/
framework.ConformanceIt("should proxy logs on node using proxy subresource ", func() { nodeProxyTest(f, prefix+"/nodes/", "/proxy/logs/") })
if !skipCAdvisorProxyTests {
It("should proxy to cadvisor using proxy subresource", func() { nodeProxyTest(f, prefix+"/nodes/", ":4194/proxy/containers/") })
}
It("should proxy to cadvisor using proxy subresource", func() {
if skipCAdvisorProxyTests {
framework.Skipf("cadvisor proxy test removed on newer server version")
}
nodeProxyTest(f, prefix+"/nodes/", ":4194/proxy/containers/")
})
// using the porter image to serve content, access the content
// (of multiple pods?) from multiple (endpoints/services?)
......
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