Synced tempest plugins names and services

It updates the package names and service availability flag
for all the tempest plugins defined in defaults/main.yml.

Change-Id: I7927f6f377bf088456ac1a8b5b3066457749bfaa
This commit is contained in:
Chandan Kumar 2019-01-07 15:33:19 +05:30
parent dc89adb173
commit 25b5533c30
2 changed files with 16 additions and 1 deletions

View File

@ -160,15 +160,22 @@ tempest_network_tenant_network_mask_bits: 28
tempest_dashboard_url: "https://{{ external_lb_vip_address }}/"
tempest_service_available_aodh: False
tempest_service_available_barbican: False
tempest_service_available_ceilometer: False
tempest_service_available_cinder: True
tempest_service_available_congress: False
tempest_service_available_designate: False
tempest_service_available_glance: True
tempest_service_available_heat: True
tempest_service_available_horizon: True
tempest_service_available_ironic: False
tempest_service_available_magnum: False
tempest_service_available_manila: False
tempest_service_available_neutron: True
tempest_service_available_neutron_fwaas: False
tempest_service_available_neutron_vpnaas: False
tempest_service_available_nova: True
tempest_service_available_octavia: False
tempest_service_available_sahara: False
tempest_service_available_swift: True
tempest_service_available_zaqar: False

View File

@ -25,12 +25,20 @@ tempest_service_distro_packages:
- subunit-filters
tempest_plugin_distro_packages:
- "{{ (tempest_service_available_barbican | bool) | ternary('python-barbican-tests-tempest', '') }}"
- "{{ (tempest_service_available_ceilometer | bool) | ternary('python-telemetry-tests-tempest', '') }}"
- "{{ (tempest_service_available_cinder | bool) | ternary('python-cinder-tests-tempest', '') }}"
- "{{ (tempest_service_available_congress | bool) | ternary('python-congress-tests-tempest', '') }}"
- "{{ (tempest_service_available_designate | bool) | ternary('python-designate-tests-tempest', '') }}"
- "{{ (tempest_service_available_heat | bool) | ternary('python-heat-tests-tempest', '') }}"
- "{{ tempest_service_available_horizon | bool | ternary('python-horizon-tests-tempest', '') }}"
- "{{ (tempest_service_available_ironic | bool) | ternary('python-ironic-tests-tempest', '') }}"
- python-keystone-tests-tempest
- "{{ (tempest_service_available_magnum | bool) | ternary('python-magnum-tests-tempest', '') }}"
- "{{ (tempest_service_available_manila | bool) | ternary('python-manila-tests-tempest', '') }}"
- "{{ (tempest_service_available_neutron | bool) | ternary('python-neutron-tests-tempest', '') }}"
- "{{ (tempest_service_available_neutron_fwaas | bool) | ternary('python-networking-fwaas-tests', '') }}"
- "{{ (tempest_service_available_neutron_vpnaas | bool) | ternary('python-networking-vpnaas-tests', '') }}"
- "{{ (tempest_service_available_octavia | bool) | ternary('python-octavia-tests-tempest', '') }}"
- "{{ (tempest_service_available_sahara | bool) | ternary('python-sahara-tests-tempest', '') }}"
- "{{ (tempest_service_available_zaqar | bool) | ternary('python-zaqar-tests-tempest', '') }}"