rally-openstack/samples/tasks/scenarios/nova/create-and-get-flavor.json
zhangzhang 0445aa61dd Add NovaFlavors.create_and_get_flavor
The scenario first creates a flavor,then get detailed
information of the created flavor

Change-Id: I99dd4f0ae39ed7587bbd71e83b205dc205acacca
2016-09-22 21:32:43 -04:00

28 lines
437 B
JSON

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