Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1866836: UPSTREAM: 95009: Remove ext2 + ext3 tests #373

Merged
merged 1 commit into from Sep 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 0 additions & 12 deletions test/e2e/storage/drivers/in_tree.go
Expand Up @@ -378,9 +378,6 @@ func InitISCSIDriver() testsuites.TestDriver {
MaxFileSize: testpatterns.FileSizeMedium,
SupportedFsType: sets.NewString(
"", // Default fsType
"ext2",
// TODO: fix iSCSI driver can work with ext3
//"ext3",
"ext4",
),
TopologyKeys: []string{v1.LabelHostname},
Expand Down Expand Up @@ -560,9 +557,6 @@ func InitRbdDriver() testsuites.TestDriver {
},
SupportedFsType: sets.NewString(
"", // Default fsType
"ext2",
// TODO: fix rbd driver can work with ext3
//"ext3",
"ext4",
),
Capabilities: map[testsuites.Capability]bool{
Expand Down Expand Up @@ -1076,7 +1070,6 @@ func InitCinderDriver() testsuites.TestDriver {
},
SupportedFsType: sets.NewString(
"", // Default fsType
"ext3",
),
TopologyKeys: []string{v1.LabelZoneFailureDomain},
Capabilities: map[testsuites.Capability]bool{
Expand Down Expand Up @@ -1515,7 +1508,6 @@ func InitAzureDiskDriver() testsuites.TestDriver {
},
SupportedFsType: sets.NewString(
"", // Default fsType
"ext3",
"ext4",
"xfs",
),
Expand Down Expand Up @@ -1656,8 +1648,6 @@ func InitAwsDriver() testsuites.TestDriver {
},
SupportedFsType: sets.NewString(
"", // Default fsType
"ext2",
"ext3",
"ext4",
"xfs",
"ntfs",
Expand Down Expand Up @@ -1813,8 +1803,6 @@ var (
localVolumeSupportedFsTypes = map[utils.LocalVolumeType]sets.String{
utils.LocalVolumeBlock: sets.NewString(
"", // Default fsType
"ext2",
"ext3",
"ext4",
//"xfs", disabled see issue https://github.com/kubernetes/kubernetes/issues/74095
),
Expand Down