From d82249a8c0afdb91f78733043b6da9dd5a1444cd Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Fri, 11 Dec 2020 14:18:51 -0500 Subject: [PATCH] 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 --- roles/ceph-rgw/tasks/rgw_create_pools.yml | 1 + 1 file changed, 1 insertion(+) 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] }}" -- 2.47.3