diff --git a/playbooks/02-infra.yml b/playbooks/02-infra.yml index 4c433ebab1..61261c05ef 100644 --- a/playbooks/02-infra.yml +++ b/playbooks/02-infra.yml @@ -86,6 +86,22 @@ ansible.builtin.include_role: name: cert_manager + # Deploy Sushy Emulator into OCP + - name: Deploy Sushy Emulator service pod + when: cifmw_use_sushy_emulator | default(false) | bool + vars: + cifmw_sushy_emulator_hypervisor_address: "{{ hostvars['controller'].ansible_host }}" + cifmw_sushy_emulator_hypervisor_target: controller + cifmw_sushy_emulator_install_type: ocp + ansible.builtin.include_role: + name: sushy_emulator + + - name: Setup Libvirt on controller + when: cifmw_use_libvirt_extracted | default(false) | bool + ansible.builtin.include_role: + name: libvirt_manager + + - name: Configure hosts networking using nmstate when: - cifmw_config_nmstate is defined