]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
osd: remove useless condition
authorGuillaume Abrioux <gabrioux@redhat.com>
Mon, 19 Aug 2019 11:51:14 +0000 (13:51 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Mon, 19 Aug 2019 14:17:22 +0000 (16:17 +0200)
just like `ceph_osd_pool_default_size`, a pool size might change after an
initial deployment. Having this condition prevents from customizing the
pool in that case.
This is not needed so let's remove it.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
roles/ceph-osd/tasks/openstack_config.yml

index 899d67b59b517c6600f422e5646ef98c017ae0aa..2bfeec0970977afa8e21b0ec86aff96c43711e32 100644 (file)
@@ -48,7 +48,7 @@
       with_items: "{{ openstack_pools | unique }}"
       delegate_to: "{{ groups[mon_group_name][0] }}"
       changed_when: false
-      when: item.size | default(osd_pool_default_size) != ceph_osd_pool_default_size
+      when: item.size | default(osd_pool_default_size)
 
     - name: customize pool min_size
       command: >