Create manager auth keyring

This commit is contained in:
Joshua Boniface 2023-09-01 15:42:20 -04:00
parent 99bc566764
commit e9303c1ad1
1 changed files with 12 additions and 0 deletions

View File

@ -68,6 +68,12 @@
become_user: ceph
when: newhost is defined and newhost
- name: create mgr auth keyring
command: ceph auth get-or-create mgr.{{ ansible_hostname }} mon 'allow profile mgr' osd 'allow *' mds 'allow *' --out-file /var/lib/ceph/mgr/ceph-{{ ansible_hostname }}/keyring
become_user: ceph
args:
creates: /var/lib/ceph/mgr/ceph-{{ ansible_hostname }}/keyring
- name: touch monitor and manager done files
file:
dest: /var/lib/ceph/{{ item }}/ceph-{{ ansible_hostname }}/done
@ -78,6 +84,12 @@
- mgr
when: newhost is defined and newhost
- name: install OSD bootstrap keyring
file:
dest: /var/lib/ceph/bootstrap-osd/ceph.keyring
src: /etc/ceph/ceph.osd.bootstrap.keyring
state: link
- name: start but disable daemons
service:
name: "{{ item }}"