rally-openstack/samples/tasks/scenarios/nova/boot-server-associate-and-dissociate-floating-ip.json
Andrey Kurilin ab03bfeafd Fix nova scenarios for assiciating fips
Two scenarios were not properly adopted while switching from network
wrapper usage

Change-Id: I677d45d11614acf48b979db1c64fc115cedd612e
2020-08-05 06:01:53 +00:00

61 lines
1.1 KiB
JSON

{% set flavor_name = flavor_name or "m1.tiny" %}
{
"NovaServers.boot_server_associate_and_dissociate_floating_ip": [
{
"runner": {
"type": "constant",
"concurrency": 2,
"times": 5
},
"args": {
"flavor": {
"name": "{{flavor_name}}"
},
"image": {
"name": "^cirros.*-disk$"
}
},
"context": {
"users": {
"users_per_tenant": 2,
"tenants": 3
},
"network": {}
},
"sla": {
"failure_rate": {
"max": 0
}
}
},
{
"runner": {
"type": "constant",
"concurrency": 2,
"times": 5
},
"args": {
"flavor": {
"name": "{{flavor_name}}"
},
"image": {
"name": "^cirros.*-disk$"
},
"floating_network": "ext_network_name"
},
"context": {
"users": {
"users_per_tenant": 2,
"tenants": 3
},
"network": {}
},
"sla": {
"failure_rate": {
"max": 0
}
}
}
]
}