Remove [Conformance] flag on e2es which we know are
subject to change downstream.
This commit is contained in:
		| @@ -81,7 +81,7 @@ var _ = framework.KubeDescribe("HostPath", func() { | |||||||
| 		}) | 		}) | ||||||
| 	}) | 	}) | ||||||
|  |  | ||||||
| 	It("should support subPath [Conformance]", func() { | 	It("should support subPath", func() { | ||||||
| 		volumePath := "/test-volume" | 		volumePath := "/test-volume" | ||||||
| 		subPath := "sub-path" | 		subPath := "sub-path" | ||||||
| 		fileName := "test-file" | 		fileName := "test-file" | ||||||
|   | |||||||
| @@ -50,7 +50,7 @@ var _ = framework.KubeDescribe("ClusterDns [Feature:Example]", func() { | |||||||
| 		c = f.Client | 		c = f.Client | ||||||
| 	}) | 	}) | ||||||
|  |  | ||||||
| 	It("should create pod that uses dns [Conformance]", func() { | 	It("should create pod that uses dns", func() { | ||||||
| 		mkpath := func(file string) string { | 		mkpath := func(file string) string { | ||||||
| 			return filepath.Join(framework.TestContext.RepoRoot, "examples/cluster-dns", file) | 			return filepath.Join(framework.TestContext.RepoRoot, "examples/cluster-dns", file) | ||||||
| 		} | 		} | ||||||
|   | |||||||
| @@ -50,7 +50,7 @@ var _ = framework.KubeDescribe("Networking", func() { | |||||||
| 	}) | 	}) | ||||||
|  |  | ||||||
| 	// First test because it has no dependencies on variables created later on. | 	// First test because it has no dependencies on variables created later on. | ||||||
| 	It("should provide unchanging, static URL paths for kubernetes api services [Conformance]", func() { | 	It("should provide unchanging, static URL paths for kubernetes api services", func() { | ||||||
| 		tests := []struct { | 		tests := []struct { | ||||||
| 			path string | 			path string | ||||||
| 		}{ | 		}{ | ||||||
|   | |||||||
| @@ -62,11 +62,11 @@ func proxyContext(version string) { | |||||||
| 	// Port here has to be kept in sync with default kubelet port. | 	// Port here has to be kept in sync with default kubelet port. | ||||||
| 	It("should proxy logs on node with explicit kubelet port [Conformance]", func() { nodeProxyTest(f, prefix+"/proxy/nodes/", ":10250/logs/") }) | 	It("should proxy logs on node with explicit kubelet port [Conformance]", func() { nodeProxyTest(f, prefix+"/proxy/nodes/", ":10250/logs/") }) | ||||||
| 	It("should proxy logs on node [Conformance]", func() { nodeProxyTest(f, prefix+"/proxy/nodes/", "/logs/") }) | 	It("should proxy logs on node [Conformance]", func() { nodeProxyTest(f, prefix+"/proxy/nodes/", "/logs/") }) | ||||||
| 	It("should proxy to cadvisor [Conformance]", func() { nodeProxyTest(f, prefix+"/proxy/nodes/", ":4194/containers/") }) | 	It("should proxy to cadvisor", func() { nodeProxyTest(f, prefix+"/proxy/nodes/", ":4194/containers/") }) | ||||||
|  |  | ||||||
| 	It("should proxy logs on node with explicit kubelet port using proxy subresource [Conformance]", func() { nodeProxyTest(f, prefix+"/nodes/", ":10250/proxy/logs/") }) | 	It("should proxy logs on node with explicit kubelet port using proxy subresource [Conformance]", func() { nodeProxyTest(f, prefix+"/nodes/", ":10250/proxy/logs/") }) | ||||||
| 	It("should proxy logs on node using proxy subresource [Conformance]", func() { nodeProxyTest(f, prefix+"/nodes/", "/proxy/logs/") }) | 	It("should proxy logs on node using proxy subresource [Conformance]", func() { nodeProxyTest(f, prefix+"/nodes/", "/proxy/logs/") }) | ||||||
| 	It("should proxy to cadvisor using proxy subresource [Conformance]", func() { nodeProxyTest(f, prefix+"/nodes/", ":4194/proxy/containers/") }) | 	It("should proxy to cadvisor using proxy subresource", func() { nodeProxyTest(f, prefix+"/nodes/", ":4194/proxy/containers/") }) | ||||||
|  |  | ||||||
| 	// using the porter image to serve content, access the content | 	// using the porter image to serve content, access the content | ||||||
| 	// (of multiple pods?) from multiple (endpoints/services?) | 	// (of multiple pods?) from multiple (endpoints/services?) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Timothy St. Clair
					Timothy St. Clair