mirror of https://github.com/ceph/ceph-ansible.git
update: fail the playbook if straw2 conversion failed
It's better to fail the playbook so the user is aware the straw2
migration has failed.
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit c396122ad9
)
pull/6707/head
parent
65ce69567a
commit
f0cd3c4f48
|
@ -1111,12 +1111,16 @@
|
|||
command: "{{ ceph_cmd }} --cluster {{ cluster }} osd setcrushmap -i /etc/ceph/{{ cluster }}-crushmap"
|
||||
changed_when: false
|
||||
|
||||
- name: switching to straw2 buckets failed
|
||||
debug:
|
||||
- name: inform that the switch to straw2 buckets failed
|
||||
fail:
|
||||
msg: >
|
||||
"An attempt to switch to straw2 bucket was made but failed.
|
||||
Check the cluster status."
|
||||
|
||||
- name: remove crushmap backup
|
||||
file:
|
||||
path: /etc/ceph/{{ cluster }}-crushmap
|
||||
state: absent
|
||||
|
||||
- name: show ceph status
|
||||
hosts: "{{ mon_group_name|default('mons') }}"
|
||||
|
|
Loading…
Reference in New Issue