]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
cephadm-adopt: ensure /etc/ceph is present on monitoring node rhcs-5.0 v6.0.20.2
authorGuillaume Abrioux <gabrioux@redhat.com>
Tue, 7 Dec 2021 20:11:50 +0000 (21:11 +0100)
committerGuillaume Abrioux <gabrioux@redhat.com>
Thu, 6 Jan 2022 09:22:03 +0000 (10:22 +0100)
When deploying the monitoring stack on a dedicated node, the directory
`/etc/ceph` has never been created. Therefore, the play for adopting the
monitoring stack fails because it can't write the minimal config file.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2029697
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit 7ece59b41defc81ffd3bf184a24b63b45ec7d097)
(cherry picked from commit 8a32576d209bc329b4159a781151a7d3a40c5b7d)

infrastructure-playbooks/cephadm-adopt.yml

index 5b2772d021a6902beceb83cc1ec3f2c1f7b448b6..b6a2a0affe8afbe1a80c9801ba078cd6bdb7fc17 100644 (file)
         path: "/etc/ceph/{{ cluster }}.conf"
       register: ceph_config
 
+    - name: ensure /etc/ceph is present
+      file:
+        path: /etc/ceph
+        state: directory
+        owner: "{{ ceph_uid | int if containerized_deployment | bool else 'ceph' }}"
+        group: "{{ ceph_uid | int if containerized_deployment | bool else 'ceph' }}"
+        mode: "{{ ceph_directories_mode }}"
+
     - name: write a ceph.conf with minimal config
       copy:
         dest: "/etc/ceph/{{ cluster }}.conf"