2015-07-28 23:15:19 +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-06-03 06:54:56 +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 23:15:19 +08:00
|
|
|
- include: pre_requisite.yml
|
2016-03-24 21:21:07 +08:00
|
|
|
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/docker/fetch_image.yml"
|
|
|
|
vars:
|
|
|
|
ceph_docker_username: '{{ ceph_mds_docker_username}}'
|
|
|
|
ceph_docker_imagename: '{{ ceph_mds_docker_imagename}}'
|
2016-04-01 17:18:40 +08:00
|
|
|
- include: dirs_permissions.yml
|
2016-05-02 22:33:16 +08:00
|
|
|
- include: fetch_configs.yml
|
2016-04-01 17:18:40 +08:00
|
|
|
|
2015-10-21 18:02:50 +08:00
|
|
|
- include: selinux.yml
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
2015-07-28 23:15:19 +08:00
|
|
|
- include: start_docker_mds.yml
|