mirror of https://github.com/ceph/ceph-ansible.git
11 lines
500 B
YAML
11 lines
500 B
YAML
---
|
|
- name: destroy and recreate rbd pool if osd_pool_default_pg_num is not honoured
|
|
shell: |
|
|
ceph --connect-timeout 5 --cluster {{ cluster }} osd pool rm rbd rbd --yes-i-really-really-mean-it
|
|
ceph --connect-timeout 5 --cluster {{ cluster }} osd pool create rbd {{ ceph_conf_overrides.global.osd_pool_default_pg_num }}
|
|
changed_when: false
|
|
failed_when: false
|
|
when:
|
|
- rbd_pool_df.stdout == "0"
|
|
- rbd_pool_pgs.stdout != "{{ ceph_conf_overrides.global.osd_pool_default_pg_num }}"
|