From fe3dc9b3276a87ef73adfb331c53e6e1235a917a Mon Sep 17 00:00:00 2001 From: Leon Levy Date: Wed, 27 Aug 2025 11:18:22 -0700 Subject: [PATCH] -e ansible_python_interpreter=$(which python) I find that adding this flag at the end of the ansible-playbook command eliminates a lot of headache, since some systems have multiple versions of Python on them --- documentation/modules/ROOT/pages/03-demo.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/modules/ROOT/pages/03-demo.adoc b/documentation/modules/ROOT/pages/03-demo.adoc index bab1af2..898052f 100644 --- a/documentation/modules/ROOT/pages/03-demo.adoc +++ b/documentation/modules/ROOT/pages/03-demo.adoc @@ -161,7 +161,7 @@ Run the Ansible script which will setup the RHCL Operator, Cert Manager Operator [source,shell script] ---- cd operator-setup -ansible-playbook playbooks/ocp4_workload_connectivity_link.yml -e ACTION=create -i inventories/inventory.template +ansible-playbook playbooks/ocp4_workload_connectivity_link.yml -e ACTION=create -i inventories/inventory.template -e ansible_python_interpreter=$(which python) ---- === What's next