From 100f92563fcf79d32df43c9c14b07744a2f98198 Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Tue, 12 May 2020 12:39:27 +0100 Subject: [PATCH] CI: Blacklist Ansible 2.9.8 Ansible 2.9.8 includes a regression on the fileglob plugin [1] that causes the HAProxy role to fail. This change blacklists Ansible 2.9.8 to work around the issue. [1] https://github.com/ansible/ansible/issues/69450 Change-Id: I12ca3b154fc7fed6a221880596e0acb5f6278bb7 Related-Bug: #1878192 --- tests/run.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run.yml b/tests/run.yml index fa1438626c..f135f58ac1 100644 --- a/tests/run.yml +++ b/tests/run.yml @@ -195,7 +195,7 @@ - name: install kolla-ansible and dependencies vars: # Test latest ansible version on Ubuntu, minimum supported on others. - ansible_version_constraint: "{{ '==2.9.*' if base_distro == 'ubuntu' else '==2.8.*' }}" + ansible_version_constraint: "{{ '==2.9.*,!=2.9.8' if base_distro == 'ubuntu' else '==2.8.*' }}" pip: name: - "{{ kolla_ansible_src_dir }}" @@ -522,7 +522,7 @@ - name: install ansible and ARA for python 3 vars: # Test latest ansible version on Ubuntu, minimum supported on others. - ansible_version_constraint: "{{ '==2.9.*' if base_distro == 'ubuntu' else '==2.8.*' }}" + ansible_version_constraint: "{{ '==2.9.*,!=2.9.8' if base_distro == 'ubuntu' else '==2.8.*' }}" pip: name: - "ansible{{ ansible_version_constraint }}"