Merge pull request #127458 from ii/promote-volume-attachment-status-test

Promote e2e test for VolumeAttachmentStatus Endpoints +3 Endpoints
This commit is contained in:
Kubernetes Prow Robot 2024-09-23 18:08:00 +01:00 committed by GitHub
commit 7ff0580bc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 1 deletions

View File

@ -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]'

View File

@ -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()