ceph-ansible/roles/ceph-mds/tasks/pre_requisite.yml

80 lines
2.0 KiB
YAML
Raw Normal View History

---
# Deploy Ceph metadata server(s)
- 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
owner: root
group: root
mode: 600
when: cephx
- name: create mds directory
2015-10-19 10:56:02 +08:00
file:
path: /var/lib/ceph/mds/ceph-{{ ansible_hostname }}
state: directory
owner: root
group: root
mode: 0644
when: cephx
- 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
changed_when: false
when: cephx
- name: set mds key permissions
2015-10-19 10:56:02 +08:00
file:
path: /var/lib/ceph/mds/ceph-{{ ansible_hostname }}/keyring
mode: 0600
owner: root
group: root
when: cephx
- 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
owner: root
group: root
mode: 0600
with_items:
- done
- upstart
changed_when: false
when: ansible_distribution == "Ubuntu"
- 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
owner: root
group: root
mode: 0600
with_items:
- done
- sysvinit
changed_when: false
when: ansible_distribution != "Ubuntu"
- 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 }}"
changed_when: false
when: ansible_distribution == "Ubuntu"
- name: start and add that the metadata service to the init sequence
2015-10-19 10:56:02 +08:00
service:
name: ceph
state: started
enabled: yes
args: mds
changed_when: false
when: ansible_distribution != "Ubuntu"