rally-openstack/samples/tasks/scenarios/nova/boot-and-update-server.json
chenhb-zte 1258888597 Add NovaServers.boot_and_update_server
This boots a server, then the server is updated
with the new name and description.

Change-Id: Ibfd3e8e5cd92ee20ba329cb0460e086edec18aeb
2016-05-30 20:16:38 -04:00

27 lines
639 B
JSON

{% set flavor_name = flavor_name or "m1.tiny" %}
{
"NovaServers.boot_and_update_server": [
{
"args": {
"flavor": {
"name": "{{flavor_name}}"
},
"image": {
"name": "^cirros.*uec$"
}
},
"runner": {
"type": "constant",
"times": 10,
"concurrency": 2
},
"context": {
"users": {
"tenants": 3,
"users_per_tenant": 2
}
}
}
]
}