mirror of https://github.com/ceph/ceph-ansible.git
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
---
|
|
- name: check if it is Atomic host
|
|
stat: path=/run/ostree-booted
|
|
register: stat_ostree
|
|
always_run: true
|
|
|
|
- name: set fact for using Atomic host
|
|
set_fact:
|
|
is_atomic: '{{ stat_ostree.stat.exists }}'
|
|
|
|
- include: pre_requisite.yml
|
|
when: not is_atomic
|
|
|
|
- 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
|
|
|
|
- include: "{{ playbook_dir }}/roles/ceph-common/tasks/docker/fetch_image.yml"
|
|
vars:
|
|
ceph_docker_username: "{{ ceph_restapi_docker_username }}"
|
|
ceph_docker_imagename: "{{ ceph_restapi_docker_imagename }}"
|
|
ceph_docker_image_tag: "{{ ceph_restapi_docker_image_tag }}"
|
|
- include: dirs_permissions.yml
|
|
- include: fetch_configs.yml
|
|
- include: start_docker_restapi.yml
|