2015-01-21 01:43:47 +08:00
|
|
|
---
|
2016-02-02 22:10:24 +08:00
|
|
|
- name: create bootstrap-mds directory
|
2015-11-17 23:10:02 +08:00
|
|
|
file:
|
|
|
|
path: /var/lib/ceph/bootstrap-mds/
|
|
|
|
state: directory
|
2016-02-02 22:10:24 +08:00
|
|
|
owner: "{{ dir_owner }}"
|
|
|
|
group: "{{ dir_group }}"
|
|
|
|
mode: "{{ dir_mode }}"
|
2015-11-17 23:10:02 +08:00
|
|
|
|
2016-02-02 22:10:24 +08:00
|
|
|
- name: copy mds bootstrap key
|
2015-10-19 10:56:02 +08:00
|
|
|
copy:
|
|
|
|
src: "{{ fetch_directory }}/{{ fsid }}/var/lib/ceph/bootstrap-mds/ceph.keyring"
|
|
|
|
dest: /var/lib/ceph/bootstrap-mds/ceph.keyring
|
2016-02-02 22:10:24 +08:00
|
|
|
owner: "{{ key_owner }}"
|
|
|
|
group: "{{ key_group }}"
|
|
|
|
mode: "{{ key_mode }}"
|
2015-11-17 23:10:02 +08:00
|
|
|
|
2016-02-02 22:10:24 +08:00
|
|
|
- name: create mds directory
|
2015-11-17 23:10:02 +08:00
|
|
|
file:
|
|
|
|
path: /var/lib/ceph/mds/ceph-{{ ansible_hostname }}
|
|
|
|
state: directory
|
2016-02-02 22:10:24 +08:00
|
|
|
owner: "{{ dir_owner }}"
|
|
|
|
group: "{{ dir_group }}"
|
|
|
|
mode: "{{ dir_mode }}"
|
2015-01-21 01:43:47 +08:00
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: create mds keyring
|
2015-10-19 10:56:02 +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
|
|
|
|
args:
|
|
|
|
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
|
|
|
|
|
2016-02-02 22:10:24 +08:00
|
|
|
- name: set mds key permissions
|
2015-11-17 23:10:02 +08:00
|
|
|
file:
|
|
|
|
path: /var/lib/ceph/mds/ceph-{{ ansible_hostname }}/keyring
|
2016-02-02 22:10:24 +08:00
|
|
|
mode: "{{ key_mode }}"
|
|
|
|
owner: "{{ key_owner }}"
|
|
|
|
group: "{{ key_group }}"
|
|
|
|
when: cephx
|
2015-01-21 01:43:47 +08:00
|
|
|
|
2015-11-17 23:10:02 +08:00
|
|
|
|
2016-02-02 22:10:24 +08:00
|
|
|
- name: activate metadata server with upstart
|
2015-10-19 10:56:02 +08:00
|
|
|
file:
|
|
|
|
path: /var/lib/ceph/mds/ceph-{{ ansible_hostname }}/{{ item }}
|
|
|
|
state: touch
|
2016-02-02 22:10:24 +08:00
|
|
|
owner: "{{ activate_file_owner }}"
|
|
|
|
group: "{{ activate_file_group }}"
|
|
|
|
mode: "{{ activate_file_mode }}"
|
2015-03-30 16:59:08 +08:00
|
|
|
with_items:
|
|
|
|
- done
|
|
|
|
- upstart
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2016-02-02 22:10:24 +08:00
|
|
|
when: ansible_distribution == "Ubuntu"
|
2015-11-17 23:10:02 +08:00
|
|
|
|
2016-02-02 22:10:24 +08:00
|
|
|
- name: activate metadata server with sysvinit
|
2015-10-19 10:56:02 +08:00
|
|
|
file:
|
|
|
|
path: /var/lib/ceph/mds/ceph-{{ ansible_hostname }}/{{ item }}
|
|
|
|
state: touch
|
2016-02-02 22:10:24 +08:00
|
|
|
owner: "{{ activate_file_owner }}"
|
|
|
|
group: "{{ activate_file_group }}"
|
|
|
|
mode: "{{ activate_file_mode }}"
|
2015-03-30 16:59:08 +08:00
|
|
|
with_items:
|
|
|
|
- done
|
|
|
|
- sysvinit
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2016-02-02 22:10:24 +08:00
|
|
|
when: ansible_distribution != "Ubuntu"
|
2015-03-30 16:59:08 +08:00
|
|
|
|
2015-07-24 02:01:43 +08:00
|
|
|
- name: start and add that the metadata service to the init sequence (ubuntu)
|
2015-10-19 10:56:02 +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-11-21 05:34:29 +08:00
|
|
|
- name: start and add that the metadata service to the init sequence (before infernalis)
|
2015-10-19 10:56:02 +08:00
|
|
|
service:
|
|
|
|
name: ceph
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
2015-12-05 06:36:24 +08:00
|
|
|
args: mds.{{ ansible_hostname }}
|
2015-06-26 06:26:03 +08:00
|
|
|
changed_when: false
|
2015-11-20 22:09:34 +08:00
|
|
|
when:
|
|
|
|
ansible_distribution != "Ubuntu" and
|
|
|
|
not is_ceph_infernalis
|
2015-11-21 05:34:29 +08:00
|
|
|
|
|
|
|
- name: start and add that the metadata service to the init sequence (for or after infernalis)
|
|
|
|
service:
|
|
|
|
name: ceph-mds@{{ ansible_hostname }}
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
|
|
|
changed_when: false
|
2015-11-20 22:09:34 +08:00
|
|
|
when:
|
|
|
|
ansible_distribution != "Ubuntu" and
|
|
|
|
is_ceph_infernalis
|