Add extra waits before unsetting maintenance

Avoids issues after restarting the API.
This commit is contained in:
2024-08-28 12:42:01 -04:00
parent 4e59ad5efe
commit f00b43f20f
4 changed files with 30 additions and 0 deletions

View File

@ -244,6 +244,12 @@
become_user: root
gather_facts: yes
tasks:
- name: wait 15 seconds for system to stabilize
pause:
seconds: 15
become: no
connection: local
- name: unset PVC maintenance mode
command: pvc cluster maintenance off
run_once: yes