rally-openstack/samples/tasks/scenarios/vm/boot-runcommand-delete-with-disk.json
Luz Cazares b02784cb1a Set samples default flavor to m1.tiny
Summary:
Samples should use m1.tiny instead of m1.nano
Samples should be parametrized and use m1.tiny instead of m1.nano as default flavor.

Change-Id: Ie820c573c0a9971a54f7ab20a7454a2f05dc88d2
Closes-Bug: #1431700
2015-08-24 23:11:46 -05:00

37 lines
1.0 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_floatingip": true,
"force_delete": false,
"script": "samples/tasks/support/instance_dd_test.sh",
"interpreter": "/bin/sh",
"username": "cirros"
},
"runner": {
"type": "constant",
"times": 10,
"concurrency": 2
},
"context": {
"users": {
"tenants": 3,
"users_per_tenant": 2
}
}
}
]
}