mirror of https://github.com/ceph/ceph-ansible.git
19 lines
400 B
YAML
19 lines
400 B
YAML
---
|
|
- 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
|
|
|
|
- include: pre_requisite.yml
|
|
- include: dirs_permissions.yml
|
|
- include: fetch_configs.yml
|
|
|
|
- include: selinux.yml
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
- include: start_docker_mds.yml
|