mirror of https://github.com/ceph/ceph-ansible.git
29 lines
748 B
YAML
29 lines
748 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
|
|
|
|
- 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 }}'
|
|
|
|
- include: checks.yml
|
|
when: ceph_health.rc != 0
|
|
|
|
- include: pre_requisite.yml
|
|
- include: selinux.yml
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
# let the first mon create configs and keyrings
|
|
- include: create_configs.yml
|
|
when: inventory_hostname == groups.mons[0]
|
|
- include: fetch_configs.yml
|
|
- include: start_docker_monitor.yml
|
|
- include: ../ceph_keys.yml
|