7abe61dd3d
The scenario first boot a server and create a floating IP. then associate the floating IP to the server. Finally dissociate the floating IP. Change-Id: I7fed1933c90fb3f0b911935eefb59d365b9232f2
33 lines
606 B
JSON
33 lines
606 B
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.*uec$"
|
|
}
|
|
},
|
|
"context": {
|
|
"users": {
|
|
"users_per_tenant": 2,
|
|
"tenants": 3
|
|
},
|
|
"network": {}
|
|
},
|
|
"sla": {
|
|
"failure_rate": {
|
|
"max": 0
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|