From d8ddd9fcee7c1a25ceec8a8dc69369c446b21a9f Mon Sep 17 00:00:00 2001 From: Chandan Kumar Date: Tue, 17 Jan 2023 19:45:56 +0530 Subject: [PATCH] Add support for whitebox-neutron-tempest-plugin Signed-off-by: Chandan Kumar Change-Id: Id7fb7f53c2b099ee6f671350cf3cc896be5bf758 --- defaults/main.yml | 1 + vars/redhat-8.yml | 1 + vars/redhat-9.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/defaults/main.yml b/defaults/main.yml index 0ef5f825..b262d86a 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -269,6 +269,7 @@ tempest_service_available_senlin: "{{ groups['senlin_all'] is defined and groups tempest_service_available_swift: "{{ (groups['swift_all'] is defined and groups['swift_all'] | length > 0) or (groups['ceph-rgw'] is defined and groups['ceph-rgw'] | length > 0) or (ceph_rgws is defined and ceph_rgws | length > 0) }}" tempest_service_available_trove: "{{ groups['trove_all'] is defined and groups['trove_all'] | length > 0 }}" tempest_service_available_whitebox: False +tempest_service_available_whitebox_neutron: False tempest_service_available_zaqar: "{{ groups['zaqar_all'] is defined and groups['zaqar_all'] | length > 0 }}" tempest_service_available_zun: "{{ groups['zun_all'] is defined and groups['zun_all'] | length > 0 }}" diff --git a/vars/redhat-8.yml b/vars/redhat-8.yml index 807555aa..0a40aa49 100644 --- a/vars/redhat-8.yml +++ b/vars/redhat-8.yml @@ -55,4 +55,5 @@ tempest_plugin_distro_packages: - "{{ (tempest_service_available_octavia | bool) | ternary('python3-octavia-tests-tempest', '') }}" - "{{ (tempest_service_available_sahara | bool) | ternary('python3-sahara-tests-tempest', '') }}" - "{{ (tempest_service_available_whitebox | bool) | ternary('python3-whitebox-tests-tempest', '') }}" + - "{{ (tempest_service_available_whitebox_neutron | bool) | ternary('python3-whitebox-neutron-tests-tempest', '') }}" - "{{ (tempest_service_available_zaqar | bool) | ternary('python3-zaqar-tests-tempest', '') }}" diff --git a/vars/redhat-9.yml b/vars/redhat-9.yml index 9fc128d0..513f6b7d 100644 --- a/vars/redhat-9.yml +++ b/vars/redhat-9.yml @@ -56,4 +56,5 @@ tempest_plugin_distro_packages: - "{{ (tempest_service_available_octavia | bool) | ternary('python3-octavia-tests-tempest', '') }}" - "{{ (tempest_service_available_sahara | bool) | ternary('python3-sahara-tests-tempest', '') }}" - "{{ (tempest_service_available_whitebox | bool) | ternary('python3-whitebox-tests-tempest', '') }}" + - "{{ (tempest_service_available_whitebox_neutron | bool) | ternary('python3-whitebox-neutron-tests-tempest', '') }}" - "{{ (tempest_service_available_zaqar | bool) | ternary('python3-zaqar-tests-tempest', '') }}"