Bump up Ansible supported versions to 11.x/12.x

This change bumps up the maximum supported version of Ansible to 12.x
(ansible-core 2.18.x) and minimum to 11.x (ansible-core 2.17.x).

Change-Id: I1c4aa7f22a9cfa6d2c1abad8efaca880572a0bdf
This commit is contained in:
Grzegorz Koper
2025-03-25 16:27:28 +01:00
parent 6098c8fe01
commit 7d1061d036
3 changed files with 8 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ kolla_ansible_venv_extra_requirements: []
# tested code. Changes to this limit should be tested. It is possible to only
# install ansible-core by setting kolla_ansible_venv_ansible to None.
kolla_ansible_venv_ansible:
kolla_ansible_venv_ansible_core: 'ansible-core>=2.16,<2.18'
kolla_ansible_venv_ansible_core: 'ansible-core>=2.17,<2.19'
# Path to a requirements.yml file for Ansible collections.
kolla_ansible_requirements_yml: "{{ kolla_ansible_venv }}/share/kolla-ansible/requirements.yml"

View File

@@ -0,0 +1,6 @@
---
upgrade:
- |
Updates the maximum supported version of Ansible from 11 (ansible-core
2.17) to 12 (ansible-core 2.18). The minimum supported version is updated
from 9.x to 10.x. This is true for both Kayobe and Kolla Ansible.

View File

@@ -1,6 +1,6 @@
pbr>=2.0 # Apache-2.0
Jinja2>3 # BSD
ansible>=9,<11 # GPLv3
ansible>=10,<12 # GPLv3
cliff>=3.1.0 # Apache
netaddr!=0.7.16,>=0.7.13 # BSD
PyYAML>=3.10.0 # MIT