2014-03-04 02:08:51 +08:00
|
|
|
---
|
|
|
|
## Deploy Ceph metadata server(s)
|
|
|
|
|
|
|
|
- name: Copy MDS bootstrap key
|
2014-09-05 03:14:11 +08:00
|
|
|
copy: >
|
2014-11-06 00:57:28 +08:00
|
|
|
src=fetch/{{ fsid }}/var/lib/ceph/bootstrap-mds/ceph.keyring
|
|
|
|
dest=/var/lib/ceph/bootstrap-mds/ceph.keyring
|
|
|
|
owner=root
|
|
|
|
group=root
|
2014-09-05 03:14:11 +08:00
|
|
|
mode=600
|
2014-03-04 02:08:51 +08:00
|
|
|
when: cephx
|
|
|
|
|
|
|
|
- name: Create MDS directory
|
2014-09-05 03:14:11 +08:00
|
|
|
file: >
|
2014-11-06 00:57:28 +08:00
|
|
|
path=/var/lib/ceph/mds/ceph-{{ ansible_hostname }}
|
|
|
|
state=directory
|
|
|
|
owner=root
|
|
|
|
group=root
|
2014-09-05 03:14:11 +08:00
|
|
|
mode=0644
|
2014-03-04 02:08:51 +08:00
|
|
|
when: cephx
|
|
|
|
|
|
|
|
- name: Create MDS keyring
|
|
|
|
command: ceph --cluster ceph --name client.bootstrap-mds --keyring /var/lib/ceph/bootstrap-mds/ceph.keyring auth get-or-create mds.{{ ansible_hostname }} osd 'allow rwx' mds 'allow' mon 'allow profile mds' -o /var/lib/ceph/mds/ceph-{{ ansible_hostname }}/keyring creates=/var/lib/ceph/mds/ceph-{{ ansible_hostname }}/keyring
|
|
|
|
when: cephx
|
|
|
|
changed_when: False
|
|
|
|
|
|
|
|
- name: Set MDS key permissions
|
2014-09-05 03:14:11 +08:00
|
|
|
file: >
|
2014-11-06 00:57:28 +08:00
|
|
|
path=/var/lib/ceph/mds/ceph-{{ ansible_hostname }}/keyring
|
|
|
|
mode=0600
|
|
|
|
owner=root
|
2014-09-05 03:14:11 +08:00
|
|
|
group=root
|
2014-03-04 02:08:51 +08:00
|
|
|
when: cephx
|
|
|
|
|
|
|
|
- name: Start and add that the MDS service to the init sequence
|
2014-11-06 00:57:28 +08:00
|
|
|
service: >
|
|
|
|
name=ceph
|
|
|
|
state=started
|
|
|
|
enabled=yes
|
2014-09-05 03:14:11 +08:00
|
|
|
args=mds
|