diff --git a/roles/create_bootstrap/tasks/main.yaml b/roles/create_bootstrap/tasks/main.yaml index 2f44ed9a..40ce8823 100644 --- a/roles/create_bootstrap/tasks/main.yaml +++ b/roles/create_bootstrap/tasks/main.yaml @@ -25,7 +25,7 @@ --console pty,target_type=serial \ --wait=-1 \ --noautoconsole - timeout: 300 + timeout: 360 register: cmd_output - name: Debug, print above command output diff --git a/roles/create_compute_node/tasks/main.yaml b/roles/create_compute_node/tasks/main.yaml index 1a0af91a..e45ee5bf 100644 --- a/roles/create_compute_node/tasks/main.yaml +++ b/roles/create_compute_node/tasks/main.yaml @@ -73,7 +73,7 @@ nameserver={{ env.cluster.networking.nameserver1 }}{{ (',' + env.cluster.networking.nameserver2) if env.cluster.networking.nameserver2 is defined else '' }} \ coreos.live.rootfs_url=http://{{ env.bastion.networking.ip }}:8080/bin/{{ rhcos_live_rootfs }} \ coreos.inst.ignition_url=http://{{ env.bastion.networking.ip }}:8080/ignition/worker.ign {{ _vm_console }}" - timeout: 300 + timeout: 360 register: cmd_output - name: Debug, print above command output ansible.builtin.debug: diff --git a/roles/create_compute_nodes/tasks/main.yaml b/roles/create_compute_nodes/tasks/main.yaml index 663ab13b..9918b5db 100644 --- a/roles/create_compute_nodes/tasks/main.yaml +++ b/roles/create_compute_nodes/tasks/main.yaml @@ -18,7 +18,7 @@ --extra-args "rd.neednet=1 coreos.inst=yes coreos.inst.install_dev=vda coreos.live.rootfs_url=http://{{ env.bastion.networking.ip }}:8080/bin/{{ rhcos_live_rootfs }} ip={{ env.cluster.nodes.compute.ip[i] }}::{{ env.cluster.networking.gateway }}:{{ env.cluster.networking.subnetmask }}:{{ env.cluster.nodes.compute.hostname[i] }}::none:1500 nameserver={{ env.cluster.networking.nameserver1 }} {{ ('--nameserver=' + env.cluster.networking.nameserver2) if env.cluster.networking.nameserver2 is defined else '' }} coreos.inst.ignition_url=http://{{ env.bastion.networking.ip }}:8080/ignition/worker.ign {{ _vm_console }}" \ --wait=-1 \ --noautoconsole - timeout: 300 + timeout: 360 with_sequence: start=0 end={{ (env.cluster.nodes.compute.hostname | length) - 1 }} stride=1 loop_control: extended: yes diff --git a/roles/create_control_nodes/tasks/main.yaml b/roles/create_control_nodes/tasks/main.yaml index dd335637..03377d97 100644 --- a/roles/create_control_nodes/tasks/main.yaml +++ b/roles/create_control_nodes/tasks/main.yaml @@ -18,7 +18,7 @@ --console pty,target_type=serial \ --wait=-1 \ --noautoconsole - timeout: 300 + timeout: 360 with_sequence: start=0 end={{ (env.cluster.nodes.control.hostname | length) - 1 }} stride=1 loop_control: extended: yes