Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support to deploy sushy in extracted jobs #2386

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions playbooks/02-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
lewisdenny marked this conversation as resolved.
Show resolved Hide resolved
ansible.builtin.include_role:
name: libvirt_manager


- name: Configure hosts networking using nmstate
when:
- cifmw_config_nmstate is defined
Expand Down