From: Guillaume Abrioux Date: Thu, 6 Jan 2022 13:33:42 +0000 (+0100) Subject: cephadm-adopt: use named args in rgw export creation X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=aee1f06497d1e3737d286186d24338a03990644a;p=ceph-ansible.git cephadm-adopt: use named args in rgw export creation In order to avoid breaking changes, let's use named argument instead of positional argument syntax in the command line used to create rgw export. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2037691 Signed-off-by: Guillaume Abrioux --- diff --git a/infrastructure-playbooks/cephadm-adopt.yml b/infrastructure-playbooks/cephadm-adopt.yml index 57a76465e..a58a3726d 100644 --- a/infrastructure-playbooks/cephadm-adopt.yml +++ b/infrastructure-playbooks/cephadm-adopt.yml @@ -1100,7 +1100,7 @@ when: bucket_list.skipped is undefined - name: create rgw export - command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} nfs export create rgw {{ item }} {{ ansible_facts['hostname'] }} {{ ceph_nfs_rgw_pseudo_path }} --squash {{ ceph_nfs_rgw_squash }}" + command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} nfs export create rgw --cluster-id {{ ansible_facts['hostname'] }} --bucket {{ item.split('/')[-1] }} --pseudo-path {{ ceph_nfs_rgw_pseudo_path }} --squash {{ ceph_nfs_rgw_squash }}" changed_when: false delegate_to: "{{ groups[mon_group_name][0] }}" environment: