2015-07-28 22:05:35 +08:00
|
|
|
---
|
2015-10-21 08:12:43 +08:00
|
|
|
- name: check if a cluster is already running
|
2017-02-09 22:16:39 +08:00
|
|
|
command: "docker ps -q -a --filter='ancestor={{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'"
|
2015-10-21 08:12:43 +08:00
|
|
|
register: ceph_health
|
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
2016-11-27 05:16:07 +08:00
|
|
|
always_run: true
|
2015-10-21 08:12:43 +08:00
|
|
|
|
|
|
|
- include: checks.yml
|
2016-04-01 18:57:58 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- ceph_health.rc != 0
|
|
|
|
- not osd_containerized_deployment_with_kv
|
2016-11-06 12:15:26 +08:00
|
|
|
- not "{{ rolling_update | default(false) }}"
|
2015-10-21 08:12:43 +08:00
|
|
|
|
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"
|
|
|
|
|
2016-05-09 22:08:33 +08:00
|
|
|
# NOTE (jimcurtis): dirs_permissions.yml must precede fetch_configs.yml
|
2016-04-28 01:31:27 +08:00
|
|
|
# because it creates the directories needed by the latter.
|
2016-04-26 23:20:02 +08:00
|
|
|
- include: dirs_permissions.yml
|
|
|
|
|
2015-07-28 22:05:35 +08:00
|
|
|
- include: fetch_configs.yml
|
2016-03-29 16:23:31 +08:00
|
|
|
when: not osd_containerized_deployment_with_kv
|
|
|
|
|
2016-04-01 17:18:40 +08:00
|
|
|
- include: selinux.yml
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
2015-07-28 22:05:35 +08:00
|
|
|
- include: start_docker_osd.yml
|