Disable stackviz for tempest centos 8 to unblock gate

As commented in related bug (see comments/6) we need to disable
installation of stackviz as there are issues with the constraints
used. This is not a proper fix but if it works can unblock for now

Related-Bug: 1976247

Change-Id: I8c5e168a9fd18332c073223726ad3a3e338af04d
This commit is contained in:
Marios Andreou 2022-05-30 16:06:35 +03:00
parent be5e48aeed
commit 8bcf4bfc0f
1 changed files with 4 additions and 4 deletions

View File

@ -82,12 +82,12 @@
rc_file: "{{ (tempest_cloud_name in ['undercloud']) | ternary('stackrc', 'overcloudrc') }}"
when: release in ['queens', 'stein']
# FIXME(chandankumar): https://bugs.launchpad.net/tripleo/+bug/1953032/comments/5
# Remove it once the above bug is fixed
- name: Disable stackviz for CentOS Stream 9
# FIXME(chandankumar): centos9 https://bugs.launchpad.net/tripleo/+bug/1953032/comments/5
# TODO(marios): centos8 https://bugs.launchpad.net/tripleo/+bug/1976247
- name: Disable stackviz for CentOS Stream 9 and 8
set_fact:
tempest_run_stackviz: false
when: ansible_distribution_major_version is version('9', '>=')
when: ansible_distribution_major_version is version('8', '>=')
- name: Create clouds.yaml if it doesn't exist
shell: |