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
This commit is contained in:
parent
82c5c1c75f
commit
100f92563f
@ -195,7 +195,7 @@
|
|||||||
- name: install kolla-ansible and dependencies
|
- name: install kolla-ansible and dependencies
|
||||||
vars:
|
vars:
|
||||||
# Test latest ansible version on Ubuntu, minimum supported on others.
|
# 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:
|
pip:
|
||||||
name:
|
name:
|
||||||
- "{{ kolla_ansible_src_dir }}"
|
- "{{ kolla_ansible_src_dir }}"
|
||||||
@ -522,7 +522,7 @@
|
|||||||
- name: install ansible and ARA for python 3
|
- name: install ansible and ARA for python 3
|
||||||
vars:
|
vars:
|
||||||
# Test latest ansible version on Ubuntu, minimum supported on others.
|
# 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:
|
pip:
|
||||||
name:
|
name:
|
||||||
- "ansible{{ ansible_version_constraint }}"
|
- "ansible{{ ansible_version_constraint }}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user