2014-03-04 02:08:51 +08:00
|
|
|
---
|
2015-01-07 18:41:35 +08:00
|
|
|
- include: os_check.yml
|
2014-03-04 02:08:51 +08:00
|
|
|
|
2015-01-07 18:41:35 +08:00
|
|
|
- include: os_tuning.yml
|
2014-09-05 03:14:11 +08:00
|
|
|
|
2015-01-07 18:41:35 +08:00
|
|
|
- include: prerequisite_ice.yml
|
2014-12-18 01:01:44 +08:00
|
|
|
when: ceph_stable_ice
|
|
|
|
|
2015-01-07 18:25:34 +08:00
|
|
|
- include: install_on_redhat.yml
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
|
|
|
- include: install_on_debian.yml
|
|
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
|
|
|
|
- name: Check for a Ceph socket
|
|
|
|
shell: "stat /var/run/ceph/*.asok > /dev/null 2>&1"
|
|
|
|
ignore_errors: true
|
|
|
|
register: socket
|
|
|
|
|
|
|
|
- name: Generate cluster UUID
|
|
|
|
shell: uuidgen | tee fetch/ceph_cluster_uuid.conf creates=fetch/ceph_cluster_uuid.conf
|
|
|
|
connection: local
|
|
|
|
sudo: false
|
|
|
|
register: cluster_uuid
|
|
|
|
|
|
|
|
- name: Read cluster UUID if it already exists
|
|
|
|
command: cat fetch/ceph_cluster_uuid.conf removes=fetch/ceph_cluster_uuid.conf
|
|
|
|
connection: local
|
|
|
|
sudo: false
|
|
|
|
register: cluster_uuid
|
|
|
|
|
|
|
|
- name: Generate Ceph configuration file
|
|
|
|
template: >
|
|
|
|
src=ceph.conf.j2
|
|
|
|
dest=/etc/ceph/ceph.conf
|
|
|
|
owner=root
|
|
|
|
group=root
|
|
|
|
mode=0644
|
|
|
|
notify:
|
|
|
|
- restart ceph
|
|
|
|
- restart ceph-osd-all on ubuntu
|