2015-01-21 01:43:47 +08:00
|
|
|
---
|
|
|
|
# Deploy Ceph metadata server(s)
|
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: copy mds bootstrap key
|
2015-01-21 01:43:47 +08:00
|
|
|
copy: >
|
|
|
|
src=fetch/{{ fsid }}/var/lib/ceph/bootstrap-mds/ceph.keyring
|
|
|
|
dest=/var/lib/ceph/bootstrap-mds/ceph.keyring
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
mode=600
|
|
|
|
when: cephx
|
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: create mds directory
|
2015-01-21 01:43:47 +08:00
|
|
|
file: >
|
|
|
|
path=/var/lib/ceph/mds/ceph-{{ ansible_hostname }}
|
|
|
|
state=directory
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
mode=0644
|
|
|
|
when: cephx
|
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: create mds keyring
|
2015-03-19 19:21:29 +08:00
|
|
|
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
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-01-21 01:43:47 +08:00
|
|
|
when: cephx
|
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: set mds key permissions
|
2015-01-21 01:43:47 +08:00
|
|
|
file: >
|
|
|
|
path=/var/lib/ceph/mds/ceph-{{ ansible_hostname }}/keyring
|
|
|
|
mode=0600
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
when: cephx
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: activate metadata server with upstart
|
2015-03-30 16:59:08 +08:00
|
|
|
file: >
|
|
|
|
path=/var/lib/ceph/mds/ceph-{{ ansible_hostname }}/{{ item }}
|
|
|
|
state=touch
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
mode=0600
|
|
|
|
with_items:
|
|
|
|
- done
|
|
|
|
- upstart
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-03-30 16:59:08 +08:00
|
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: activate metadata server with sysvinit
|
2015-03-30 16:59:08 +08:00
|
|
|
file: >
|
|
|
|
path=/var/lib/ceph/mds/ceph-{{ ansible_hostname }}/{{ item }}
|
|
|
|
state=touch
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
mode=0600
|
|
|
|
with_items:
|
|
|
|
- done
|
|
|
|
- sysvinit
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-03-30 16:59:08 +08:00
|
|
|
when: ansible_distribution != "Ubuntu"
|
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: start and add that the metadata service to the init sequence (ubuntu)
|
2015-03-30 16:59:08 +08:00
|
|
|
service: >
|
|
|
|
name=ceph-mds
|
|
|
|
state=started
|
|
|
|
enabled=yes
|
|
|
|
args="id={{ ansible_hostname }}"
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-03-30 16:59:08 +08:00
|
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: start and add that the metadata service to the init sequence
|
2015-01-21 01:43:47 +08:00
|
|
|
service: >
|
|
|
|
name=ceph
|
|
|
|
state=started
|
|
|
|
enabled=yes
|
|
|
|
args=mds
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-03-30 16:59:08 +08:00
|
|
|
when: ansible_distribution != "Ubuntu"
|