2015-07-28 23:35:47 +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
|
|
|
|
|
|
|
|
- include: checks.yml
|
|
|
|
when: ceph_health.rc != 0
|
|
|
|
|
2015-07-28 23:35:47 +08:00
|
|
|
- include: pre_requisite.yml
|
2015-10-21 18:02:50 +08:00
|
|
|
- include: selinux.yml
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
2015-07-28 23:35:47 +08:00
|
|
|
- include: fetch_configs.yml
|
|
|
|
- include: start_docker_rgw.yml
|