2015-07-28 23:57:58 +08:00
|
|
|
---
|
2016-07-28 22:42:19 +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-07-28 23:57:58 +08:00
|
|
|
- include: pre_requisite.yml
|
2016-07-28 22:42:19 +08:00
|
|
|
|
|
|
|
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_atomic.yml"
|
|
|
|
when:
|
|
|
|
- is_atomic
|
|
|
|
- ansible_os_family == 'RedHat'
|
|
|
|
- ntp_service_enabled
|
|
|
|
|
|
|
|
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_redhat.yml"
|
|
|
|
when:
|
|
|
|
- not is_atomic
|
|
|
|
- ansible_os_family == 'RedHat'
|
|
|
|
- ntp_service_enabled
|
|
|
|
|
|
|
|
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/misc/ntp_debian.yml"
|
|
|
|
when:
|
|
|
|
- ansible_os_family == 'Debian'
|
|
|
|
- ntp_service_enabled
|
|
|
|
|
2016-03-24 21:21:07 +08:00
|
|
|
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/docker/fetch_image.yml"
|
|
|
|
vars:
|
2016-07-09 09:38:13 +08:00
|
|
|
ceph_docker_username: "{{ ceph_restapi_docker_username }}"
|
|
|
|
ceph_docker_imagename: "{{ ceph_restapi_docker_imagename }}"
|
|
|
|
ceph_docker_image_tag: "{{ ceph_restapi_docker_image_tag }}"
|
2016-04-01 17:18:40 +08:00
|
|
|
- include: dirs_permissions.yml
|
2016-05-02 22:33:16 +08:00
|
|
|
- include: fetch_configs.yml
|
2015-07-28 23:57:58 +08:00
|
|
|
- include: start_docker_restapi.yml
|