From: Andrew Schoen Date: Thu, 28 Mar 2019 21:05:09 +0000 (-0500) Subject: rolling_update: ceph commands should use --cluster X-Git-Tag: v4.0.0rc4~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f1e04835f42f2687022dccd082bd7ceb46215bb8;p=ceph-ansible.git rolling_update: ceph commands should use --cluster Signed-off-by: Andrew Schoen (cherry picked from commit e2529dcd7f92176cb69e31c88e5fce7c1058044e) --- diff --git a/infrastructure-playbooks/rolling_update.yml b/infrastructure-playbooks/rolling_update.yml index 1ed417c6e..e4d1e2366 100644 --- a/infrastructure-playbooks/rolling_update.yml +++ b/infrastructure-playbooks/rolling_update.yml @@ -844,7 +844,7 @@ when: containerized_deployment - name: non container | disallow pre-nautilus OSDs and enable all new nautilus-only functionality - command: ceph osd require-osd-release nautilus + command: "ceph --cluster {{ cluster }} osd require-osd-release nautilus" delegate_to: "{{ groups[mon_group_name][0] }}" run_once: True when: not containerized_deployment @@ -856,7 +856,7 @@ when: containerized_deployment - name: non container | enable msgr2 protocol - command: ceph mon enable-msgr2 + command: "ceph --cluster {{ cluster }} mon enable-msgr2" delegate_to: "{{ groups[mon_group_name][0] }}" run_once: True when: not containerized_deployment