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:
Sanjay Chari 2022-11-15 16:37:54 +05:30
parent 0d9d4df9f4
commit dbc84267c3
2 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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