From 8bcf4bfc0f2596776ca6abf284cce6337e097e3d Mon Sep 17 00:00:00 2001 From: Marios Andreou Date: Mon, 30 May 2022 16:06:35 +0300 Subject: [PATCH] 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 --- playbooks/tasks/tempest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/playbooks/tasks/tempest.yml b/playbooks/tasks/tempest.yml index e501af8d9..07ec438dc 100644 --- a/playbooks/tasks/tempest.yml +++ b/playbooks/tasks/tempest.yml @@ -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: |