diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index abf0b396eb5..f133c2952c5 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -384,6 +384,14 @@ MUST cause pods created by that RC to be orphaned. release: v1.9 file: test/e2e/apimachinery/garbage_collector.go +- testname: Namespace, apply finalizer to a namespace + codename: '[sig-api-machinery] Namespaces [Serial] should apply a finalizer to a + Namespace [Conformance]' + description: Attempt to create a Namespace which MUST be succeed. Updating the namespace + with a fake finalizer MUST succeed. The fake finalizer MUST be found. Removing + the fake finalizer from the namespace MUST succeed and MUST NOT be found. + release: v1.26 + file: test/e2e/apimachinery/namespace.go - testname: Namespace, apply update to a namespace codename: '[sig-api-machinery] Namespaces [Serial] should apply an update to a Namespace [Conformance]' diff --git a/test/e2e/apimachinery/namespace.go b/test/e2e/apimachinery/namespace.go index 2ed50829fb8..5c767b7c1a7 100644 --- a/test/e2e/apimachinery/namespace.go +++ b/test/e2e/apimachinery/namespace.go @@ -383,7 +383,15 @@ var _ = SIGDescribe("Namespaces [Serial]", func() { framework.Logf("Namespace %q now has labels, %#v", ns, updatedNamespace.Labels) }) - ginkgo.It("should apply a finalizer to a Namespace", func() { + /* + Release: v1.26 + Testname: Namespace, apply finalizer to a namespace + Description: Attempt to create a Namespace which MUST be succeed. + Updating the namespace with a fake finalizer MUST succeed. The + fake finalizer MUST be found. Removing the fake finalizer from + the namespace MUST succeed and MUST NOT be found. + */ + framework.ConformanceIt("should apply a finalizer to a Namespace", func() { fakeFinalizer := v1.FinalizerName("e2e.example.com/fakeFinalizer") var updatedNamespace *v1.Namespace