From: Guillaume Abrioux Date: Tue, 16 Mar 2021 13:13:13 +0000 (+0100) Subject: facts: fix nfs/external cluster scenario X-Git-Tag: v6.0.2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=688e432c3220913c2e3849a92e42c8d5f853b032;p=ceph-ansible.git facts: fix nfs/external cluster scenario These tasks shouldn't be run when at least 1 monitor isn't present in the inventory. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1937997 Signed-off-by: Guillaume Abrioux (cherry picked from commit ccd1cbb732e25fe364b68a548cbed11da2a91ceb) --- diff --git a/roles/ceph-facts/tasks/facts.yml b/roles/ceph-facts/tasks/facts.yml index 7d8d89754..a626d518a 100644 --- a/roles/ceph-facts/tasks/facts.yml +++ b/roles/ceph-facts/tasks/facts.yml @@ -262,8 +262,8 @@ - name: backward compatibility tasks related when: - - inventory_hostname in groups.get(rgw_group_name, []) - or inventory_hostname in groups.get(nfs_group_name, []) + - (inventory_hostname in groups.get(rgw_group_name, []) or inventory_hostname in groups.get(nfs_group_name, [])) + - groups.get(mon_group_name, []) | length > 0 block: - name: get ceph current status command: "{{ timeout_command }} {{ _container_exec_cmd | default('') }} ceph --cluster {{ cluster }} service dump -f json"