@@ -988,6 +988,9 @@ func InitCinderDriver() testsuites.TestDriver {
988
988
testsuites .CapPersistence : true ,
989
989
testsuites .CapFsGroup : true ,
990
990
testsuites .CapExec : true ,
991
+ // Cinder supports volume limits, but the test creates large
992
+ // number of volumes and times out test suites.
993
+ testsuites .CapVolumeLimits : false ,
991
994
},
992
995
},
993
996
}
@@ -1159,6 +1162,9 @@ func InitGcePdDriver() testsuites.TestDriver {
1159
1162
testsuites .CapMultiPODs : true ,
1160
1163
testsuites .CapControllerExpansion : true ,
1161
1164
testsuites .CapNodeExpansion : true ,
1165
+ // GCE supports volume limits, but the test creates large
1166
+ // number of volumes and times out test suites.
1167
+ testsuites .CapVolumeLimits : false ,
1162
1168
},
1163
1169
},
1164
1170
}
@@ -1413,6 +1419,9 @@ func InitAzureDriver() testsuites.TestDriver {
1413
1419
testsuites .CapBlock : true ,
1414
1420
testsuites .CapExec : true ,
1415
1421
testsuites .CapMultiPODs : true ,
1422
+ // Azure supports volume limits, but the test creates large
1423
+ // number of volumes and times out test suites.
1424
+ testsuites .CapVolumeLimits : false ,
1416
1425
},
1417
1426
},
1418
1427
}
@@ -1537,6 +1546,9 @@ func InitAwsDriver() testsuites.TestDriver {
1537
1546
testsuites .CapMultiPODs : true ,
1538
1547
testsuites .CapControllerExpansion : true ,
1539
1548
testsuites .CapNodeExpansion : true ,
1549
+ // AWS supports volume limits, but the test creates large
1550
+ // number of volumes and times out test suites.
1551
+ testsuites .CapVolumeLimits : false ,
1540
1552
},
1541
1553
},
1542
1554
}
0 commit comments