From: Dimitri Savineau Date: Fri, 11 Dec 2020 19:18:51 +0000 (-0500) Subject: ceph-rgw: add cluster parameter on ceph_ec_profile X-Git-Tag: v6.0.0alpha3~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d82249a8c0afdb91f78733043b6da9dd5a1444cd;p=ceph-ansible.git ceph-rgw: add cluster parameter on ceph_ec_profile 81233dd introduced a regression with the ceph_ec_profile module call in the ceph-rgw role due the missing cluster module parameter. Signed-off-by: Dimitri Savineau --- diff --git a/roles/ceph-rgw/tasks/rgw_create_pools.yml b/roles/ceph-rgw/tasks/rgw_create_pools.yml index 401c046a1..6d9918329 100644 --- a/roles/ceph-rgw/tasks/rgw_create_pools.yml +++ b/roles/ceph-rgw/tasks/rgw_create_pools.yml @@ -2,6 +2,7 @@ - name: create ec profile ceph_ec_profile: name: "{{ item.value.ec_profile }}" + cluster: "{{ cluster }}" k: "{{ item.value.ec_k }}" m: "{{ item.value.ec_m }}" delegate_to: "{{ groups[mon_group_name][0] }}"