2015-07-28 21:44:52 +08:00
|
|
|
---
|
2015-10-21 08:12:43 +08:00
|
|
|
- name: check if a cluster is already running
|
|
|
|
shell: "docker ps | grep -sq 'ceph/daemon'"
|
|
|
|
register: ceph_health
|
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
|
|
|
|
2016-01-28 03:50:05 +08:00
|
|
|
- name: check if it is Atomic host
|
|
|
|
stat: path=/run/ostree-booted
|
|
|
|
register: stat_ostree
|
|
|
|
|
|
|
|
- name: set fact for using Atomic host
|
|
|
|
set_fact:
|
|
|
|
is_atomic='{{ stat_ostree.stat.exists }}'
|
|
|
|
|
2015-10-21 08:12:43 +08:00
|
|
|
- include: checks.yml
|
|
|
|
when: ceph_health.rc != 0
|
|
|
|
|
2015-07-28 21:44:52 +08:00
|
|
|
- include: pre_requisite.yml
|
2015-10-21 18:02:50 +08:00
|
|
|
- include: selinux.yml
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
2016-02-06 02:50:57 +08:00
|
|
|
# let the first mon create configs and keyrings
|
|
|
|
- include: create_configs.yml
|
|
|
|
when: inventory_hostname == groups.mons[0]
|
2015-07-28 21:44:52 +08:00
|
|
|
- include: fetch_configs.yml
|
|
|
|
- include: start_docker_monitor.yml
|
2016-01-22 03:54:41 +08:00
|
|
|
- include: ../ceph_keys.yml
|