Increase all wait timeouts to 30s

Ensure that even on slow(er) clusters, these timeouts have more time to
complete before proceeding so the task won't fail.
This commit is contained in:
Joshua Boniface 2023-09-01 15:42:24 -04:00
parent cba276e248
commit c29cdd5305
1 changed files with 8 additions and 8 deletions

View File

@ -39,9 +39,9 @@
command: 'pvc node secondary {{ ansible_hostname }}' command: 'pvc node secondary {{ ansible_hostname }}'
ignore_errors: true ignore_errors: true
- name: wait 15 seconds for system to stabilize - name: wait 30 seconds for system to stabilize
pause: pause:
seconds: "15" seconds: "30"
become: no become: no
connection: local connection: local
@ -56,9 +56,9 @@
retries: 60 retries: 60
delay: 10 delay: 10
- name: wait 15 seconds for system to stabilize - name: wait 30 seconds for system to stabilize
pause: pause:
seconds: "15" seconds: "30"
become: no become: no
connection: local connection: local
@ -89,9 +89,9 @@
state: stopped state: stopped
ignore_errors: true ignore_errors: true
- name: wait 15 seconds for system to stabilize - name: wait 30 seconds for system to stabilize
pause: pause:
seconds: "15" seconds: "30"
become: no become: no
connection: local connection: local
@ -157,8 +157,8 @@
- name: set PVC maintenance mode - name: set PVC maintenance mode
command: pvc maintenance off command: pvc maintenance off
- name: wait 5 seconds for system to stabilize - name: wait 30 seconds for system to stabilize
pause: pause:
seconds: "5" seconds: "30"
become: no become: no
connection: local connection: local