From: David Galloway Date: Tue, 18 Feb 2025 03:13:09 +0000 (-0500) Subject: ansible: Add tag to python interpreter var setting tasks X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=eee0dd229599b3c300e0f8bbdae611004c8b5396;p=ceph-build.git ansible: Add tag to python interpreter var setting tasks I'm working on a combination of terraform and ansible to quickly spin up instances in IBM Cloud so they can join Jenkins as builders. Part of this process involves creating a virtualenv and running ansible from it. python-jenkins needs to be installed in the virtualenv and setting the python interpreters inside the playbook breaks that. This PR will let me `--skip-tags interpreter` Signed-off-by: David Galloway --- diff --git a/ansible/examples/builder.yml b/ansible/examples/builder.yml index 33a179ef..cbb026fe 100644 --- a/ansible/examples/builder.yml +++ b/ansible/examples/builder.yml @@ -796,6 +796,7 @@ (ansible_os_family == "Debian" and ansible_distribution_major_version|int <= 16) tags: - register + - interpreter - set_fact: pip_version: pip3 @@ -805,6 +806,7 @@ ansible_os_family == "Suse" tags: - register + - interpreter - name: Install six, latest one pip: