feat: adopt cephadm (#752)
diff --git a/roles/ceph_csi_rbd/tasks/main.yml b/roles/ceph_csi_rbd/tasks/main.yml
index 6db53e0..213aee7 100644
--- a/roles/ceph_csi_rbd/tasks/main.yml
+++ b/roles/ceph_csi_rbd/tasks/main.yml
@@ -15,7 +15,7 @@
- name: Collect "ceph mon dump" output from a monitor
delegate_to: "{{ groups[ceph_csi_rbd_mons_group][0] }}"
run_once: true
- ansible.builtin.command: ceph mon dump -f json
+ ansible.builtin.command: cephadm shell -- ceph mon dump -f json
changed_when: false
register: _ceph_mon_dump
diff --git a/roles/ceph_provisioners/tasks/main.yml b/roles/ceph_provisioners/tasks/main.yml
index e175a24..e62069b 100644
--- a/roles/ceph_provisioners/tasks/main.yml
+++ b/roles/ceph_provisioners/tasks/main.yml
@@ -15,7 +15,7 @@
- name: Collect "ceph mon dump" output from a monitor
delegate_to: "{{ groups[ceph_provisioners_ceph_mon_group][0] }}"
run_once: true
- ansible.builtin.command: ceph mon dump -f json
+ ansible.builtin.command: cephadm shell -- ceph mon dump -f json
changed_when: false
register: _ceph_mon_dump
diff --git a/roles/rook_ceph_cluster/tasks/main.yml b/roles/rook_ceph_cluster/tasks/main.yml
index 0c8232a..078bd38 100644
--- a/roles/rook_ceph_cluster/tasks/main.yml
+++ b/roles/rook_ceph_cluster/tasks/main.yml
@@ -12,10 +12,19 @@
# License for the specific language governing permissions and limitations
# under the License.
+# (rlin) This is because rgw will be managed by rook operator. We need to mute
+# CEPHADM_STRAY_DAEMON until we have all daemon managed by cephadm
+- name: Mute CEPHADM_STRAY_DAEMON warning
+ run_once: true
+ delegate_to: "{{ groups[rook_ceph_cluster_mon_group][0] }}"
+ ansible.builtin.command: cephadm shell -- ceph health mute CEPHADM_STRAY_DAEMON
+ failed_when: false
+ changed_when: false
+
- name: Collect "ceph quorum_status" output from a monitor
run_once: true
delegate_to: "{{ groups[rook_ceph_cluster_mon_group][0] }}"
- ansible.builtin.command: ceph quorum_status -f json
+ ansible.builtin.command: cephadm shell -- ceph quorum_status -f json
changed_when: false
register: _rook_ceph_cluster_quorum_status_data