Merge "Add blazar tempest support"

This commit is contained in:
Zuul 2024-01-11 04:54:21 +00:00 committed by Gerrit Code Review
commit 184595e6cc
3 changed files with 9 additions and 0 deletions

View File

@ -104,6 +104,9 @@ tempest_plugins: "{{ (_tempest_plugins + tempest_extra_plugins) | selectattr('in
tempest_plugin_barbican_git_repo: https://opendev.org/openstack/barbican-tempest-plugin
tempest_plugin_barbican_git_install_branch: master
tempest_plugin_blazar_git_repo: https://opendev.org/openstack/blazar-tempest-plugin
tempest_plugin_blazar_git_install_branch: master
tempest_plugin_cinder_git_repo: https://opendev.org/openstack/cinder-tempest-plugin
tempest_plugin_cinder_git_install_branch: master
@ -243,6 +246,7 @@ tempest_services: []
tempest_service_available_aodh: "{{ groups['aodh_all'] is defined and groups['aodh_all'] | length > 0 }}"
tempest_service_available_barbican: "{{ groups['barbican_all'] is defined and groups['barbican_all'] | length > 0 }}"
tempest_service_available_blazar: "{{ groups['blazar_all'] is defined and groups['blazar_all'] | length > 0 }}"
tempest_service_available_ceilometer: "{{ groups['ceilometer_all'] is defined and groups['ceilometer_all'] | length > 0 }}"
tempest_service_available_cinder: "{{ groups['cinder_all'] is defined and groups['cinder_all'] | length > 0 }}"
tempest_service_available_cloudkitty: "{{ groups['cloudkitty_all'] is defined and groups['cloudkitty_all'] | length > 0 }}"

View File

@ -41,6 +41,7 @@ img_disk_format = {{ tempest_images[0]['format'] }}
http_timeout = 120
[service_available]
blazar = {{ tempest_service_available_blazar }}
cinder = {{ tempest_service_available_cinder }}
neutron = {{ tempest_service_available_neutron }}
glance = {{ tempest_service_available_glance }}

View File

@ -51,6 +51,10 @@ _tempest_plugins:
repo: "{{ tempest_plugin_barbican_git_repo }}"
branch: "{{ tempest_plugin_barbican_git_install_branch }}"
install: "{{ tempest_service_available_barbican | bool }}"
- name: blazar-tempest-plugin
repo: "{{ tempest_plugin_blazar_git_repo }}"
branch: "{{ tempest_plugin_blazar_git_install_branch }}"
install: "{{ tempest_service_available_blazar | bool }}"
- name: cinder-tempest-plugin
repo: "{{ tempest_plugin_cinder_git_repo }}"
branch: "{{ tempest_plugin_cinder_git_install_branch }}"