Merge pull request #134062 from rbiamru/add-nodeconformance-labels

test/e2e/node: add [NodeConformance] label to ConfigMap update test
This commit is contained in:
Kubernetes Prow Robot
2025-09-23 15:48:13 -07:00
committed by GitHub
2 changed files with 12 additions and 2 deletions

View File

@@ -2126,6 +2126,12 @@
ConfigMap must be deleted by Collection.
release: v1.19
file: test/e2e/common/node/configmap.go
- testname: ConfigMap Update
codename: '[sig-node] ConfigMap should update ConfigMap successfully [NodeConformance]
[Conformance]'
description: Ensure that a ConfigMap object can be created and then updated successfully.
release: v1.32
file: test/e2e/common/node/configmap.go
- testname: Pod Lifecycle, post start exec hook
codename: '[sig-node] Container Lifecycle Hook when create a pod with lifecycle
hook should execute poststart exec hook properly [NodeConformance] [Conformance]'

View File

@@ -140,8 +140,12 @@ var _ = SIGDescribe("ConfigMap", func() {
configMap, err := newConfigMapWithEmptyKey(ctx, f)
gomega.Expect(err).To(gomega.HaveOccurred(), "created configMap %q with empty key in namespace %q", configMap.Name, f.Namespace.Name)
})
ginkgo.It("should update ConfigMap successfully", func(ctx context.Context) {
/*
Release : v1.32
Testname: ConfigMap Update
Description: Ensure that a ConfigMap object can be created and then updated successfully.
*/
framework.ConformanceIt("should update ConfigMap successfully", f.WithNodeConformance(), func(ctx context.Context) {
name := "configmap-test-" + string(uuid.NewUUID())
configMap := newConfigMap(f, name)
ginkgo.By(fmt.Sprintf("Creating ConfigMap %v/%v", f.Namespace.Name, configMap.Name))