rally-openstack/samples/tasks/scenarios/vm/boot-runcommand-delete-with-disk.json
Alexander Maretskiy 0016df9ec7 [Plugins] Replace instance_dd_test.sh with instance_test.sh
Legacy script instance_dd_test.sh (loads nova instance
in vm scenarios) is replaced with new instance_test.sh,
which does same job better and outputs detailed data
for HTML report.

Legacy script instance_dd_test.sh is removed.

Change-Id: Iafe51b5f559e01a972a187dad9e2608f7efa8022
2016-10-06 16:55:48 +03:00

39 lines
1.1 KiB
JSON

{% set flavor_name = flavor_name or "m1.tiny" %}
{
"VMTasks.boot_runcommand_delete": [
{
"args": {
"flavor": {
"name": "{{flavor_name}}"
},
"image": {
"name": "^cirros.*uec$"
},
"volume_args": {
"size": 2
},
"fixed_network": "private",
"floating_network": "public",
"use_floating_ip": true,
"force_delete": false,
"command": {
"interpreter": "/bin/sh",
"script_file": "samples/tasks/support/instance_test.sh"
},
"username": "cirros"
},
"runner": {
"type": "constant",
"times": 10,
"concurrency": 2
},
"context": {
"users": {
"tenants": 3,
"users_per_tenant": 2
}
}
}
]
}