39 lines
1006 B
Plaintext
39 lines
1006 B
Plaintext
{% set flavor_name = flavor_name or "m1.small" %}
|
|
{
|
|
"NovaServers.boot_and_list_server": [
|
|
{
|
|
"args": {
|
|
"flavor": {
|
|
"name": "{{flavor_name}}"
|
|
},
|
|
"image": {
|
|
"name": "centos7"
|
|
},
|
|
"detailed": true
|
|
},
|
|
"runner": {
|
|
"concurrency": 1,
|
|
"times": 1,
|
|
"type": "constant"
|
|
},
|
|
"context": {
|
|
"users": {
|
|
"tenants": 1,
|
|
"users_per_tenant": 1
|
|
},
|
|
"quotas": {
|
|
"neutron": {
|
|
"network": -1,
|
|
"port": -1
|
|
},
|
|
"nova": {
|
|
"instances": -1,
|
|
"cores": -1,
|
|
"ram": -1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|