Increase flush/unflush wait timeout

Bump this from 10 minutes (60 * 10 seconds) to 30 minutes (180 * 10
seconds) to ensure there is sufficient time for (relatively) large VMs
to migrate with (relatively) slow networking.
This commit is contained in:
Joshua Boniface 2023-09-01 15:42:26 -04:00
parent 4fe6204dfb
commit b9f00e3faf
1 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@
register: pvcflush
failed_when: pvcflush.stdout != 'flushed'
until: pvcflush.stdout == 'flushed'
retries: 60
retries: 180
delay: 10
- name: ensure VMs are migrated away
@ -81,7 +81,7 @@
register: virshcount
failed_when: virshcount.stdout != "0"
until: virshcount.stdout == "0"
retries: 60
retries: 180
delay: 10
- name: wait 15 seconds for system to stabilize
@ -177,7 +177,7 @@
register: pvcunflush
failed_when: pvcunflush.stdout != 'ready'
until: pvcunflush.stdout == 'ready'
retries: 60
retries: 180
delay: 10
- name: wait 30 seconds for system to stabilize