Skip to content

Commit 4a3cbfe

Browse files
authored
Merge pull request kubernetes#87256 from ii/promote-namespace-patch-test
Promote: Namespace patch test
2 parents 9f09913 + 77e31bd commit 4a3cbfe

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

test/conformance/testdata/conformance.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ test/e2e/apimachinery/garbage_collector.go: "should not delete dependents that h
2525
test/e2e/apimachinery/garbage_collector.go: "should not be blocked by dependency circle"
2626
test/e2e/apimachinery/namespace.go: "should ensure that all pods are removed when a namespace is deleted"
2727
test/e2e/apimachinery/namespace.go: "should ensure that all services are removed when a namespace is deleted"
28+
test/e2e/apimachinery/namespace.go: "should patch a Namespace"
2829
test/e2e/apimachinery/resource_quota.go: "should create a ResourceQuota and ensure its status is promptly calculated."
2930
test/e2e/apimachinery/resource_quota.go: "should create a ResourceQuota and capture the life of a service."
3031
test/e2e/apimachinery/resource_quota.go: "should create a ResourceQuota and capture the life of a secret."

test/e2e/apimachinery/namespace.go

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,14 @@ var _ = SIGDescribe("Namespaces [Serial]", func() {
249249
ginkgo.It("should always delete fast (ALL of 100 namespaces in 150 seconds) [Feature:ComprehensiveNamespaceDraining]",
250250
func() { extinguish(f, 100, 0, 150) })
251251

252-
ginkgo.It("should patch a Namespace", func() {
252+
/*
253+
Release : v1.18
254+
Testname: Namespace patching
255+
Description: A Namespace is created.
256+
The Namespace is patched.
257+
The Namespace and MUST now include the new Label.
258+
*/
259+
framework.ConformanceIt("should patch a Namespace", func() {
253260
ginkgo.By("creating a Namespace")
254261
namespaceName := "nspatchtest-" + string(uuid.NewUUID())
255262
ns, err := f.CreateNamespace(namespaceName, nil)

0 commit comments

Comments
 (0)