b02784cb1a
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
34 lines
888 B
JSON
34 lines
888 B
JSON
{% set flavor_name = flavor_name or "m1.tiny" %}
|
|
{
|
|
"NovaServers.boot_and_bounce_server": [
|
|
{
|
|
"args": {
|
|
"flavor": {
|
|
"name": "{{flavor_name}}"
|
|
},
|
|
"image": {
|
|
"name": "^cirros.*uec$"
|
|
},
|
|
"force_delete": false,
|
|
"actions": [
|
|
{"hard_reboot": 1},
|
|
{"soft_reboot": 1},
|
|
{"stop_start": 1},
|
|
{"rescue_unrescue": 1}
|
|
]
|
|
},
|
|
"runner": {
|
|
"type": "constant",
|
|
"times": 10,
|
|
"concurrency": 2
|
|
},
|
|
"context": {
|
|
"users": {
|
|
"tenants": 3,
|
|
"users_per_tenant": 2
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|