2017-03-16 17:17:08 +08:00
|
|
|
---
|
2017-10-04 16:39:17 +08:00
|
|
|
- name: set_fact docker_exec_cmd
|
|
|
|
set_fact:
|
2018-11-08 17:02:37 +08:00
|
|
|
docker_exec_cmd_mgr: "{{ container_binary }} exec ceph-mon-{{ hostvars[groups[mon_group_name][0]]['ansible_hostname'] }}"
|
2017-10-04 16:39:17 +08:00
|
|
|
when:
|
|
|
|
- containerized_deployment
|
|
|
|
|
2018-04-11 23:15:29 +08:00
|
|
|
- name: include common.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: common.yml
|
2018-04-11 23:15:29 +08:00
|
|
|
|
2017-09-15 06:48:53 +08:00
|
|
|
- name: include pre_requisite.yml
|
2018-08-21 22:23:35 +08:00
|
|
|
include_tasks: pre_requisite.yml
|
2017-04-13 01:57:33 +08:00
|
|
|
when: not containerized_deployment
|
2017-03-16 17:17:08 +08:00
|
|
|
|
2018-12-06 20:58:37 +08:00
|
|
|
- name: include start_mgr.yml
|
2018-12-03 18:15:30 +08:00
|
|
|
include_tasks: start_mgr.yml
|
2017-10-16 21:04:23 +08:00
|
|
|
|
2018-12-06 20:58:37 +08:00
|
|
|
- name: include mgr_modules.yml
|
|
|
|
include_tasks: mgr_modules.yml
|
|
|
|
when: ceph_mgr_modules|length > 0
|