Files
rally/samples/tasks/scenarios/neutron/create_and_delete_pools.json
Chris St. Pierre 4bc905e0d6 Fix users/tenants in Neutron job and sample tasks
Nearly all of the tasks in the Neutron job and nearly all of the
Neutron sample tasks had silly numbers of users and tenants, either
far too many (e.g., 25 users for 10 times) or far too few (e.g., one
user for 100 times). This makes them more reasonable and consistent.

Change-Id: I9ab0e8580be490375a30172b3c8dc277de559961
2015-09-17 09:32:59 -05:00

29 lines
703 B
JSON

{
"NeutronLoadbalancerV1.create_and_delete_pools": [
{
"args": {
"pool_create_args":{}
},
"runner": {
"type": "constant",
"times": 100,
"concurrency": 10
},
"context": {
"users": {
"tenants": 3,
"users_per_tenant": 3
},
"network":{},
"quotas": {
"neutron": {
"network": -1,
"subnet": -1,
"pool": -1
}
}
}
}
]
}