mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-08-08 15:25:26 +00:00
Merge pull request #134062 from rbiamru/add-nodeconformance-labels
test/e2e/node: add [NodeConformance] label to ConfigMap update test
This commit is contained in:
6
test/conformance/testdata/conformance.yaml
vendored
6
test/conformance/testdata/conformance.yaml
vendored
@@ -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]'
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user