From 4aeab3f712f74f098d0caf60fdff30035e027799 Mon Sep 17 00:00:00 2001 From: Dan Radez Date: Tue, 14 Mar 2023 12:59:13 -0400 Subject: [PATCH] Removing Ansible as a package dep. You can't run ansible without is already being installed. There are some packaging dep conflicts in installing ansible from RPMs on RHEL in the shared labs. This requirement will always hit that problem. Since ansible has to be already installed to get to this point there's no reason for it to be required here. If it's been installed by pip instead of RPM then the deploy can't continue. --- ansible-ipi-install/roles/shared-labs-prep/vars/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ansible-ipi-install/roles/shared-labs-prep/vars/main.yml b/ansible-ipi-install/roles/shared-labs-prep/vars/main.yml index 8b82b2d2e3..a18f57c0c2 100644 --- a/ansible-ipi-install/roles/shared-labs-prep/vars/main.yml +++ b/ansible-ipi-install/roles/shared-labs-prep/vars/main.yml @@ -13,8 +13,7 @@ yum_packages: - python3-requests - sshpass - make - - ansible rdo_packages: - https://trunk.rdoproject.org/rhel8-master/deps/latest/Packages/python3-crypto-2.6.1-18.el8ost.x86_64.rpm - https://trunk.rdoproject.org/rhel8-master/deps/latest/Packages/python3-pyghmi-1.0.22-2.el8ost.noarch.rpm -badfish_podman_cmd: "podman run --pull=always --rm quay.io/quads/badfish -u {{ lab_ipmi_user }} -p {{ lab_ipmi_password }} -i config/idrac_interfaces.yml -H mgmt-" \ No newline at end of file +badfish_podman_cmd: "podman run --pull=always --rm quay.io/quads/badfish -u {{ lab_ipmi_user }} -p {{ lab_ipmi_password }} -i config/idrac_interfaces.yml -H mgmt-"