rally-openstack/samples/tasks/scenarios/neutron/boot-server-and-add-subports.json
Sai Sindhur Malleni ed524c07c1 Add more trunk scenarios
This commit adds three new scenarios for neutron trunk port testing.
Also involves some minor refactor of existing
NeutronTrunks.create_and_list_trunks scenario.
Change-Id: I632837576b353a3bc014577ac102ef0dbcdb019c
2019-02-06 10:18:45 -05:00

47 lines
1.2 KiB
JSON

{% set flavor_name = flavor_name or "m1.tiny" %}
{
"NeutronTrunks.boot_server_and_add_subports": [
{
"args": {
"flavor": {
"name": "{{flavor_name}}"
},
"image": {
"name": "^cirros.*-disk$"
},
"network_create_args": {},
"subport_count": 10
},
"runner": {
"type": "constant",
"times": 100,
"concurrency": 10
},
"context": {
"users": {
"tenants": 3,
"users_per_tenant": 3
},
"quotas": {
"neutron": {
"network": -1,
"subnet": -1,
"port": -1,
"trunk": -1
},
"nova": {
"instances": -1,
"cores": -1,
"ram": -1
}
}
},
"sla": {
"failure_rate": {
"max": 0
}
}
}
]
}