Update ansible to 2.17.1

This required installing a newer python on Rocky/Centos-9 as
the system python is too old for a new release ansible.

python3.12 is used in the ansible-runtime venv, but the normal
system python is still used for the openstack services.

Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-plugins/+/921837
Depends-On: https://review.opendev.org/c/openstack/openstack-ansible/+/921976
Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-os_swift/+/922283
Change-Id: If0df26247a44ca34c98532864b442f84d7a8ffd0
This commit is contained in:
Jonathan Rosser 2024-06-11 09:54:42 +01:00 committed by Dmitriy Rabotyagov
parent a39f99106e
commit 8083011444

View File

@ -22,7 +22,7 @@ set -e -u -x
export HTTP_PROXY=${HTTP_PROXY:-""}
export HTTPS_PROXY=${HTTPS_PROXY:-""}
# The Ansible version used for testing
export ANSIBLE_PACKAGE=${ANSIBLE_PACKAGE:-"ansible-core==2.15.9"}
export ANSIBLE_PACKAGE=${ANSIBLE_PACKAGE:-"ansible-core==2.17.1"}
export ANSIBLE_ROLE_FILE=${ANSIBLE_ROLE_FILE:-"ansible-role-requirements.yml"}
export ANSIBLE_COLLECTION_FILE=${ANSIBLE_COLLECTION_FILE:-"ansible-collection-requirements.yml"}
export USER_COLLECTION_FILE=${USER_COLLECTION_FILE:-"user-collection-requirements.yml"}
@ -70,8 +70,8 @@ case ${DISTRO_ID} in
rocky)
case ${DISTRO_VERSION_ID} in
9|9.[0-9]*)
dnf -y install python3 python3-devel python3-libselinux
PYTHON_EXEC_PATH="$(command -v python3)"
dnf -y install python3.12 python3.12-pip python3.12-devel python3 python3-devel python3-libselinux
PYTHON_EXEC_PATH="$(command -v python3.12)"
OSA_ANSIBLE_PYTHON_INTERPRETER="/usr/bin/python3"
;;
esac
@ -79,8 +79,9 @@ case ${DISTRO_ID} in
centos|rhel)
case ${DISTRO_VERSION_ID} in
9)
dnf -y install python3 python3-devel libselinux-python3
PYTHON_EXEC_PATH="$(command -v python3)"
dnf -y install python3.12 python3.12-pip python3.12-devel python3 python3-devel libselinux-python3
PYTHON_EXEC_PATH="$(command -v python3.12)"
OSA_ANSIBLE_PYTHON_INTERPRETER="/usr/bin/python3"
;;
esac
;;