Skip to content

Commit

Permalink
Synced tempest plugins names and services
Browse files Browse the repository at this point in the history
It updates the package names and service availability flag
for all the tempest plugins defined in defaults/main.yml.

Change-Id: I7927f6f377bf088456ac1a8b5b3066457749bfaa
  • Loading branch information
chkumar246 committed Jan 8, 2019
1 parent dc89adb commit 25b5533
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions defaults/main.yml
Expand Up @@ -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
Expand Down
10 changes: 9 additions & 1 deletion vars/redhat-7.yml
Expand Up @@ -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', '') }}"

0 comments on commit 25b5533

Please sign in to comment.