rally-openstack/samples/tasks/scenarios/nova/boot-and-rebuild.json
Chris St. Pierre 1971424ca1 Add scenario to boot and rebuild server
This scenario lets a user boot a new VM and then rebuild it,
potentially with a different image.

Change-Id: Ib2f0117a990ee371710e09a82df0160624d38358
2015-04-13 10:08:54 -05:00

29 lines
699 B
JSON

{
"NovaServers.boot_and_rebuild_server": [
{
"args": {
"flavor": {
"name": "m1.nano"
},
"from_image": {
"name": "cirros-0.3.1-x86_64-uec"
},
"to_image": {
"name": "cirros-0.3.2-x86_64-uec"
}
},
"runner": {
"type": "constant",
"times": 5,
"concurrency": 2
},
"context": {
"users": {
"tenants": 1,
"users_per_tenant": 1
}
}
}
]
}