rally/samples/tasks/scenarios/cinder/create-and-list-volume.json
Anton Arefiev 15721370a4 Support size range in Cinder create_volume and extend_volume
It is useful for some test cases to set up volume size from some
range, not only specific value. This change add such possibility
to create_volume and extend_volume.

Change-Id: Ic7cc9270eb8d31dcbe3d30acf6f24cf9c41a6fd1
2015-04-29 17:36:54 +03:00

42 lines
960 B
JSON

{
"CinderVolumes.create_and_list_volume": [
{
"args": {
"size": 1,
"detailed": true
},
"runner": {
"type": "constant",
"times": 3,
"concurrency": 1
},
"context": {
"users": {
"tenants": 1,
"users_per_tenant": 1
}
}
},
{
"args": {
"size": {
"min": 1,
"max": 5
},
"detailed": true
},
"runner": {
"type": "constant",
"times": 3,
"concurrency": 1
},
"context": {
"users": {
"tenants": 1,
"users_per_tenant": 1
}
}
}
]
}