diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index dd710f6e04b..10419d9a67e 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -3592,6 +3592,17 @@ was configured with a subpath. release: v1.12 file: test/e2e/storage/subpath.go +- testname: VolumeAttachment, apply changes to a volumeattachment status + codename: '[sig-storage] VolumeAttachment Conformance should apply changes to a + volumeattachment status [Conformance]' + description: Creating an initial VolumeAttachment MUST succeed. Patching a VolumeAttachment + MUST succeed with its new label found. Reading VolumeAttachment status MUST succeed + with its attached status being false. Patching the VolumeAttachment status MUST + succeed with its attached status being true. Updating the VolumeAttachment status + MUST succeed with its attached status being false. Deleting a VolumeAttachment + MUST succeed and it MUST be confirmed. + release: v1.32 + file: test/e2e/storage/volume_attachment.go - testname: VolumeAttachment, lifecycle codename: '[sig-storage] VolumeAttachment Conformance should run through the lifecycle of a VolumeAttachment [Conformance]' diff --git a/test/e2e/storage/volume_attachment.go b/test/e2e/storage/volume_attachment.go index 46a7ea286c3..f1a06ec9d77 100644 --- a/test/e2e/storage/volume_attachment.go +++ b/test/e2e/storage/volume_attachment.go @@ -167,7 +167,17 @@ var _ = utils.SIGDescribe("VolumeAttachment", func() { framework.ExpectNoError(err, "Timeout while waiting to confirm deletion of all VolumeAttachments") }) - ginkgo.It("should apply changes to a volumeattachment status", func(ctx context.Context) { + /* + Release: v1.32 + Testname: VolumeAttachment, apply changes to a volumeattachment status + Description: Creating an initial VolumeAttachment MUST succeed. Patching a VolumeAttachment + MUST succeed with its new label found. Reading VolumeAttachment status MUST succeed + with its attached status being false. Patching the VolumeAttachment status MUST + succeed with its attached status being true. Updating the VolumeAttachment status + MUST succeed with its attached status being false. Deleting a VolumeAttachment + MUST succeed and it MUST be confirmed. + */ + framework.ConformanceIt("should apply changes to a volumeattachment status", func(ctx context.Context) { vaClient := f.ClientSet.StorageV1().VolumeAttachments()