Add additional wait after stopping OSDs

Allows the Ceph cluster to properly reconcile first.
This commit is contained in:
Joshua Boniface 2023-10-24 10:42:15 -04:00
parent 17f819ea3f
commit 677287fd2e
1 changed files with 6 additions and 0 deletions

View File

@ -140,6 +140,12 @@
ignore_errors: true ignore_errors: true
with_items: "{{ osd_services.stdout_lines }}" with_items: "{{ osd_services.stdout_lines }}"
- name: wait 30 seconds for system to stabilize
pause:
seconds: 30
become: no
connection: local
- name: stop Ceph Monitor daemon cleanly - name: stop Ceph Monitor daemon cleanly
service: service:
name: "ceph-mon@{{ ansible_hostname }}" name: "ceph-mon@{{ ansible_hostname }}"