rally-openstack/samples/tasks/scenarios/nova/boot-server-associate-and-dissociate-floating-ip.json
zhangzhang 7abe61dd3d Add BootServerAssociateAndDissociateFloatingIp
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
2016-09-27 08:35:07 -04:00

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
}
}
}
]
}