Merge pull request #87260 from ii/promote-test-for-kubernetes-service-in-default-namespace

Promote: find Kubernetes Service in default Namespace
This commit is contained in:
Kubernetes Prow Robot 2020-01-25 03:05:01 -08:00 committed by GitHub
commit 426b353890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -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"

View File

@ -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{})