Fix Dynamic Workloads Min
dynamic-workloads-min was failing because of recent changes to Nova API version pinning. This patch fixes the issue. Change-Id: Ie9e906a69187d0483680e85dc0ed7310111715f4
This commit is contained in:
parent
0d9d4df9f4
commit
dbc84267c3
@ -741,6 +741,9 @@ workloads:
|
||||
scenarios:
|
||||
- name: dynamic-workload-min
|
||||
enabled: false
|
||||
# nova_api_version >=2.52 is required for server tags,
|
||||
# which are used by dynamic workloads.
|
||||
nova_api_version: 2.52
|
||||
# smallest image name and smallest flavor name are used for
|
||||
# vm dynamic scenarios.
|
||||
smallest_image_name: cirro5
|
||||
|
@ -1,3 +1,4 @@
|
||||
{% set nova_api_version = nova_api_version or 2.52 %}
|
||||
{% set smallest_image_name = smallest_image_name or 'cirros' %}
|
||||
{% set smallest_flavor_name = smallest_flavor_name or 'm1.xtiny' %}
|
||||
{% set num_create_vms = num_create_vms or 2 %}
|
||||
@ -37,6 +38,9 @@ BrowbeatPlugin.dynamic_workload_min:
|
||||
users:
|
||||
tenants: 1
|
||||
users_per_tenant: 1
|
||||
api_versions:
|
||||
nova:
|
||||
version: {{ nova_api_version }}
|
||||
quotas:
|
||||
neutron:
|
||||
network: -1
|
||||
|
Loading…
x
Reference in New Issue
Block a user