rally-openstack/samples/tasks/scenarios/nova/create-flavor-and-set-keys.json
zhangzhang 0e29cabd2e Add nova.CreateFlavorAndSetKeys
the scenario first creates a flavor,then add the extra specs to it.
Measure the "nova flavor-key" command performance.

Change-Id: I10181bfd3bdcc4334f4f1e479b94dabfc86cbe6d
2016-10-10 01:56:05 -04:00

31 lines
525 B
JSON

{
"NovaFlavors.create_flavor_and_set_keys": [
{
"runner": {
"type": "constant",
"concurrency": 2,
"times": 10
},
"args": {
"ram": 500,
"vcpus" : 1,
"disk": 1,
"extra_specs": {
"quota:disk_read_bytes_sec": 10240
}
},
"context": {
"users": {
"tenants": 3,
"users_per_tenant": 2
}
},
"sla": {
"failure_rate": {
"max": 0
}
}
}
]
}