ceph-ansible/roles/ceph-osd/tasks/docker/main.yml

34 lines
827 B
YAML
Raw Normal View History

---
- 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
2016-04-01 18:57:58 +08:00
when:
ceph_health.rc != 0 and
not osd_containerized_deployment_with_kv
- 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: pre_requisite.yml
2016-04-26 23:20:02 +08:00
# NOTE (jimcurtis): dirs_permissions.yml must precede fetch_configs.yml
# because it creats the directories needed by the latter.
- include: dirs_permissions.yml
- include: fetch_configs.yml
when: not osd_containerized_deployment_with_kv
- include: selinux.yml
when: ansible_os_family == 'RedHat'
- include: start_docker_osd.yml