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
11 changes: 11 additions & 0 deletions roles/adoption_osp_deploy/tasks/prepare_overcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,17 @@
loop_control:
loop_var: overcloud_vm

- name: Enable and start network service for overcloud nodes
Comment thread
holser marked this conversation as resolved.
become: true
delegate_to: "{{ overcloud_vm }}"
ansible.builtin.systemd:
name: network
enabled: true
state: started
loop: "{{ _tripleo_nodes_stack[_overcloud_name] }}"
loop_control:
loop_var: overcloud_vm

- name: Slurp undercloud public key for ssh access to overcloud nodes
delegate_to: "osp-undercloud-0"
ansible.builtin.slurp:
Expand Down
Loading