mirror of https://github.com/ceph/ceph-ansible.git
cephadm-adopt: ensure /etc/ceph is present on monitoring node
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 commitrhcs-5.0 v6.0.20.27ece59b41d
) (cherry picked from commit8a32576d20
)
parent
717b305a7a
commit
6179262f98
|
@ -1150,6 +1150,14 @@
|
|||
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"
|
||||
|
|
Loading…
Reference in New Issue