From 13f5594e030ac92702b038adf8c3167cf039092b Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Mon, 19 Jan 2026 10:13:27 +0100 Subject: [PATCH] feat: bump the timeouts --- tasks/proxmox/update-node.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/proxmox/update-node.yaml b/tasks/proxmox/update-node.yaml index 85c24fa..72c52f6 100644 --- a/tasks/proxmox/update-node.yaml +++ b/tasks/proxmox/update-node.yaml @@ -21,7 +21,7 @@ delay: 10 failed_when: "running_guests.rc >= 2" register: "running_guests" - retries: 30 + retries: 60 until: "running_guests.stdout_lines | length == 0" # install node updates @@ -43,7 +43,7 @@ # initiate reboot - name: "reboot host" ansible.builtin.reboot: - reboot_timeout: 300 + reboot_timeout: 600 pre_reboot_delay: 5 post_reboot_delay: 30 test_command: "uptime" @@ -63,5 +63,5 @@ - name: "calming down" become: false ansible.builtin.wait_for: - timeout: 120 + timeout: 180 delegate_to: "localhost"