File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -1425,7 +1425,9 @@ func InitAzureDiskDriver() testsuites.TestDriver {
1425
1425
},
1426
1426
SupportedFsType : sets .NewString (
1427
1427
"" , // Default fsType
1428
+ "ext3" ,
1428
1429
"ext4" ,
1430
+ "xfs" ,
1429
1431
),
1430
1432
Capabilities : map [testsuites.Capability ]bool {
1431
1433
testsuites .CapPersistence : true ,
@@ -1513,13 +1515,6 @@ func (a *azureDiskDriver) PrepareTest(f *framework.Framework) (*testsuites.PerTe
1513
1515
1514
1516
func (a * azureDiskDriver ) CreateVolume (config * testsuites.PerTestConfig , volType testpatterns.TestVolType ) testsuites.TestVolume {
1515
1517
ginkgo .By ("creating a test azure disk volume" )
1516
- if volType == testpatterns .InlineVolume {
1517
- // Volume will be created in framework.TestContext.CloudConfig.Zone zone,
1518
- // so pods should be also scheduled there.
1519
- config .ClientNodeSelector = map [string ]string {
1520
- v1 .LabelZoneFailureDomain : framework .TestContext .CloudConfig .Zone ,
1521
- }
1522
- }
1523
1518
volumeName , err := e2epv .CreatePDWithRetry ()
1524
1519
framework .ExpectNoError (err )
1525
1520
return & azureDiskVolume {
You can’t perform that action at this time.
0 commit comments