Skip to content

Commit 426b353

Browse files
authored
Merge pull request kubernetes#87260 from ii/promote-test-for-kubernetes-service-in-default-namespace
Promote: find Kubernetes Service in default Namespace
2 parents 2cd685a + 2e79da9 commit 426b353

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

test/conformance/testdata/conformance.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ test/e2e/network/service.go: "should be able to change the type from ExternalNam
261261
test/e2e/network/service.go: "should be able to change the type from ExternalName to NodePort"
262262
test/e2e/network/service.go: "should be able to change the type from ClusterIP to ExternalName"
263263
test/e2e/network/service.go: "should be able to change the type from NodePort to ExternalName"
264+
test/e2e/network/service.go: "should find a service from listing all namespaces"
264265
test/e2e/network/service_latency.go: "should not be very high"
265266
test/e2e/node/events.go: "should be sent by kubelets and the scheduler about pods scheduling and running"
266267
test/e2e/node/pods.go: "should be set on Pods with matching resource requests and limits for memory and cpu"

test/e2e/network/service.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2639,7 +2639,12 @@ var _ = SIGDescribe("Services", func() {
26392639
e2eservice.WaitForServiceUpdatedWithFinalizer(cs, svc.Namespace, svc.Name, true)
26402640
})
26412641

2642-
ginkgo.It("should find a service from listing all namespaces", func() {
2642+
/*
2643+
Release : v1.18
2644+
Testname: Find Kubernetes Service in default Namespace
2645+
Description: List all Services in all Namespaces, response MUST include a Service named Kubernetes with the Namespace of default.
2646+
*/
2647+
framework.ConformanceIt("should find a service from listing all namespaces", func() {
26432648
ginkgo.By("fetching services")
26442649
svcs, _ := f.ClientSet.CoreV1().Services("").List(metav1.ListOptions{})
26452650

0 commit comments

Comments
 (0)