rally/samples/tasks/scenarios/cinder/create-and-get-volume.json
zhangzhang d63e157485 Add cinder.ListAndGetVolume scenario
Create a volume and get the volume detailed information.
Measure the "cinder show" command performance.

Change-Id: I3d29c257c21cf4367c85e2739387201263ccd527
2016-10-26 07:08:19 -04:00

50 lines
1.1 KiB
JSON

{
"CinderVolumes.create_and_get_volume": [
{
"args": {
"size": 1
},
"runner": {
"type": "constant",
"times": 5,
"concurrency": 2
},
"context": {
"users": {
"tenants": 2,
"users_per_tenant": 2
}
},
"sla": {
"failure_rate": {
"max": 0
}
}
},
{
"args": {
"size": {
"min": 1,
"max": 5
}
},
"runner": {
"type": "constant",
"times": 5,
"concurrency": 2
},
"context": {
"users": {
"tenants": 2,
"users_per_tenant": 2
}
},
"sla": {
"failure_rate": {
"max": 0
}
}
}
]
}