Skip to content
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
10 changes: 8 additions & 2 deletions playbooks/bgp/prepare-bgp-spines-leaves.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
fabric_list: "{{ leafs_list + spines_list + routers_list }}"
tasks:
- name: Start spine and leaf VMs
delegate_to: hypervisor
delegate_to: "{{ hostvars['controller-0'].cifmw_hypervisor_host }}"
become: true
community.libvirt.virt:
name: "cifmw-{{ item }}"
Expand Down Expand Up @@ -46,7 +46,7 @@
loop: "{{ routers_list }}"

- name: Check SSH connectivity
delegate_to: hypervisor
delegate_to: "{{ hostvars['controller-0'].cifmw_hypervisor_host }}"
ansible.builtin.wait_for:
port: 22
host: "{{ item }}.utility"
Expand Down Expand Up @@ -123,6 +123,12 @@
state: present
reload: true

- name: Install internal CA
vars:
cifmw_install_ca_url_validate_certs: false
ansible.builtin.include_role:
name: install_ca

- name: Check installed packages
ansible.builtin.package_facts:
manager: auto
Expand Down
Loading