From: Dan Mick Date: Thu, 22 Feb 2024 00:24:18 +0000 (-0800) Subject: ceph-setup, ceph-tag: undo ansible pin to <9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4352a633ac4083e7a2a512756f7dd4620ee610f9;p=ceph-build.git ceph-setup, ceph-tag: undo ansible pin to <9 ansible roles used by these jobs have had include: changed to include_tasks:, which was the reason the pin had been done in the first place Signed-off-by: Dan Mick --- diff --git a/ceph-setup/build/create_tag b/ceph-setup/build/create_tag index 330a9662e..5319c4d1f 100644 --- a/ceph-setup/build/create_tag +++ b/ceph-setup/build/create_tag @@ -3,7 +3,7 @@ set -ex # the following two methods exist in scripts/build_utils.sh -pkgs=( "ansible<9.0" ) +pkgs=( "ansible" ) TEMPVENV=$(create_venv_dir) VENV=${TEMPVENV}/bin install_python_packages $TEMPVENV "pkgs[@]" diff --git a/ceph-tag/build/build b/ceph-tag/build/build index f0ebe6963..1fbde3d15 100644 --- a/ceph-tag/build/build +++ b/ceph-tag/build/build @@ -6,7 +6,7 @@ if [ "$TAG" = false ] ; then echo "Assuming tagging process has succeeded before because TAG was set to false" else # the following two methods exist in scripts/build_utils.sh - pkgs=( "ansible<9.0" ) + pkgs=( "ansible" ) TEMPVENV=$(create_venv_dir) VENV=${TEMPVENV}/bin install_python_packages $TEMPVENV "pkgs[@]"