From d3c4ff8b95552a25bcca1fc01bebeca6d624d633 Mon Sep 17 00:00:00 2001 From: Michal Nasiadka Date: Wed, 11 Oct 2023 10:25:34 +0200 Subject: [PATCH] CI: Pin ansible-core due to breakage It seems latest ansible-core 2.14 and 2.15 breaks a filter in kolla-ansible - let's pin for now and fix the issue in a separate patchset. Change-Id: I200ad775094230e4bf8bb40988c12ea03471008f --- tests/run.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run.yml b/tests/run.yml index 90e36bad86..2e010fdf29 100644 --- a/tests/run.yml +++ b/tests/run.yml @@ -244,8 +244,8 @@ - name: install kolla-ansible and dependencies vars: - ansible_core_version_min: "==2.14.*" - ansible_core_version_max: "==2.15.*" + ansible_core_version_min: "==2.14.10" + ansible_core_version_max: "==2.15.4" # Test latest ansible version on Ubuntu, minimum supported on others. ansible_core_version_constraint: >- {{ ansible_core_version_min if is_upgrade or base_distro != 'ubuntu' else ansible_core_version_max }}