diff --git a/test/conformance/testdata/conformance.txt b/test/conformance/testdata/conformance.txt index 5cf86ac83d4..e0a27815bf1 100644 --- a/test/conformance/testdata/conformance.txt +++ b/test/conformance/testdata/conformance.txt @@ -261,6 +261,7 @@ test/e2e/network/service.go: "should be able to change the type from ExternalNam test/e2e/network/service.go: "should be able to change the type from ExternalName to NodePort" test/e2e/network/service.go: "should be able to change the type from ClusterIP to ExternalName" test/e2e/network/service.go: "should be able to change the type from NodePort to ExternalName" +test/e2e/network/service.go: "should find a service from listing all namespaces" test/e2e/network/service_latency.go: "should not be very high" test/e2e/node/events.go: "should be sent by kubelets and the scheduler about pods scheduling and running" test/e2e/node/pods.go: "should be set on Pods with matching resource requests and limits for memory and cpu" diff --git a/test/e2e/network/service.go b/test/e2e/network/service.go index 0630acb8e37..1542e70e496 100644 --- a/test/e2e/network/service.go +++ b/test/e2e/network/service.go @@ -2639,7 +2639,12 @@ var _ = SIGDescribe("Services", func() { e2eservice.WaitForServiceUpdatedWithFinalizer(cs, svc.Namespace, svc.Name, true) }) - ginkgo.It("should find a service from listing all namespaces", func() { + /* + Release : v1.18 + Testname: Find Kubernetes Service in default Namespace + Description: List all Services in all Namespaces, response MUST include a Service named Kubernetes with the Namespace of default. + */ + framework.ConformanceIt("should find a service from listing all namespaces", func() { ginkgo.By("fetching services") svcs, _ := f.ClientSet.CoreV1().Services("").List(metav1.ListOptions{})