Merge pull request #87256 from ii/promote-namespace-patch-test

Promote: Namespace patch test
This commit is contained in:
Kubernetes Prow Robot
2020-01-23 17:40:45 -08:00
committed by GitHub
2 changed files with 9 additions and 1 deletions

View File

@@ -249,7 +249,14 @@ var _ = SIGDescribe("Namespaces [Serial]", func() {
ginkgo.It("should always delete fast (ALL of 100 namespaces in 150 seconds) [Feature:ComprehensiveNamespaceDraining]",
func() { extinguish(f, 100, 0, 150) })
ginkgo.It("should patch a Namespace", func() {
/*
Release : v1.18
Testname: Namespace patching
Description: A Namespace is created.
The Namespace is patched.
The Namespace and MUST now include the new Label.
*/
framework.ConformanceIt("should patch a Namespace", func() {
ginkgo.By("creating a Namespace")
namespaceName := "nspatchtest-" + string(uuid.NewUUID())
ns, err := f.CreateNamespace(namespaceName, nil)