diff --git a/test/e2e/storage/framework/testpattern.go b/test/e2e/storage/framework/testpattern.go index 5f6218e5490..bad334cb2bd 100644 --- a/test/e2e/storage/framework/testpattern.go +++ b/test/e2e/storage/framework/testpattern.go @@ -60,7 +60,7 @@ var ( DynamicCreatedSnapshot TestSnapshotType = "DynamicSnapshot" // PreprovisionedCreatedSnapshot represents a snapshot type for pre-provisioned snapshot PreprovisionedCreatedSnapshot TestSnapshotType = "PreprovisionedSnapshot" - + // VolumeGroupSnapshot represents a group snapshot type for dynamic created volumegroupsnapshot VolumeGroupSnapshot TestSnapshotType = "VolumeGroupSnapshot" ) @@ -229,6 +229,7 @@ var ( TestTags: []interface{}{framework.WithSlow()}, SnapshotType: DynamicCreatedSnapshot, SnapshotDeletionPolicy: DeleteSnapshot, + AllowExpansion: true, } // Definitions for ntfs @@ -357,7 +358,7 @@ var ( SnapshotDeletionPolicy: RetainSnapshot, VolType: DynamicPV, } - // EphemeralSnapshotDelete is TestPattern for snapshotting of a generic ephemeral volume + // EphemeralSnapshotRetain is TestPattern for snapshotting of a generic ephemeral volume // where snapshots are preserved. EphemeralSnapshotRetain = TestPattern{ Name: "Ephemeral Snapshot (retain policy)", diff --git a/test/e2e/storage/testsuites/volume_expand.go b/test/e2e/storage/testsuites/volume_expand.go index 5480858f922..a349f627b11 100644 --- a/test/e2e/storage/testsuites/volume_expand.go +++ b/test/e2e/storage/testsuites/volume_expand.go @@ -76,6 +76,7 @@ func InitCustomVolumeExpandTestSuite(patterns []storageframework.TestPattern) st func InitVolumeExpandTestSuite() storageframework.TestSuite { patterns := []storageframework.TestPattern{ storageframework.DefaultFsDynamicPV, + storageframework.XfsDynamicPV, storageframework.BlockVolModeDynamicPV, storageframework.DefaultFsDynamicPVAllowExpansion, storageframework.BlockVolModeDynamicPVAllowExpansion,