From: Dan Mick Date: Sat, 9 Dec 2023 00:53:41 +0000 (-0800) Subject: ceph-setup, ceph-tag: pin ansible to < 9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2180%2Fhead;p=ceph-build.git ceph-setup, ceph-tag: pin ansible to < 9 This is a temporary hack until we have time to properly test changing include to include_tasks, required by ansible 9 (include has been deprecated for some time, and now it's officially gone) Signed-off-by: Dan Mick --- diff --git a/ceph-setup/build/create_tag b/ceph-setup/build/create_tag index 5319c4d1..330a9662 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" ) +pkgs=( "ansible<9.0" ) 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 1fbde3d1..f0ebe696 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" ) + pkgs=( "ansible<9.0" ) TEMPVENV=$(create_venv_dir) VENV=${TEMPVENV}/bin install_python_packages $TEMPVENV "pkgs[@]"