rally-openstack/samples/tasks/scenarios/nova/create-flavor-and-add-tenant-access.json
zhangzhang 4d9a6d4b27 Add nova.CreateFlavorAndAddTenantAccess scenario
create a flavor and add flavor access to
given tenant.

Change-Id: I2b483bc3fc62dffb837f79c755159a00cbb757c2
2016-12-28 04:56:22 -05:00

28 lines
451 B
JSON

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