2015-07-28 21:44:52 +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 04:05:32 +08:00
|
|
|
always_run: true
|
2015-10-21 08:12:43 +08:00
|
|
|
|
|
|
|
- include: checks.yml
|
2016-04-01 19:02:02 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- ceph_health.rc != 0
|
|
|
|
- not mon_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-02 22:33:16 +08:00
|
|
|
- include: dirs_permissions.yml
|
|
|
|
|
2016-02-06 02:50:57 +08:00
|
|
|
# let the first mon create configs and keyrings
|
|
|
|
- include: create_configs.yml
|
2016-04-01 19:02:02 +08:00
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- not mon_containerized_default_ceph_conf_with_kv
|
2016-03-16 00:32:17 +08:00
|
|
|
|
2015-07-28 21:44:52 +08:00
|
|
|
- include: fetch_configs.yml
|
2016-03-16 00:32:17 +08:00
|
|
|
when: not mon_containerized_deployment_with_kv
|
|
|
|
|
2016-04-01 17:18:40 +08:00
|
|
|
- include: selinux.yml
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
2017-02-24 17:22:16 +08:00
|
|
|
- name: set docker_exec_cmd fact
|
|
|
|
set_fact:
|
|
|
|
docker_exec_cmd: "docker exec ceph-mon-{{ ansible_hostname }}"
|
|
|
|
|
2015-07-28 21:44:52 +08:00
|
|
|
- include: start_docker_monitor.yml
|
2016-03-16 00:32:17 +08:00
|
|
|
|
2017-02-03 05:52:24 +08:00
|
|
|
- name: wait for monitor socket to exist
|
2017-03-28 20:15:27 +08:00
|
|
|
command: docker exec ceph-mon-{{ ansible_hostname }} stat /var/run/ceph/{{ cluster }}-mon.{{ monitor_name }}.asok
|
2017-02-03 05:52:24 +08:00
|
|
|
register: monitor_socket
|
|
|
|
retries: 5
|
2017-03-16 18:16:49 +08:00
|
|
|
delay: 15
|
2017-02-03 05:52:24 +08:00
|
|
|
until: monitor_socket.rc == 0
|
|
|
|
|
|
|
|
- name: force peer addition as potential bootstrap peer for cluster bringup
|
2017-03-28 20:15:27 +08:00
|
|
|
command: docker exec ceph-mon-{{ ansible_hostname }} ceph --admin-daemon /var/run/ceph/{{ cluster }}-mon.{{ monitor_name }}.asok add_bootstrap_peer_hint {{ hostvars[item]['ansible_' + ceph_mon_docker_interface].ipv4.address }}
|
2017-03-24 14:40:15 +08:00
|
|
|
with_items: "{{ groups[mon_group_name] }}"
|
2017-02-03 05:52:24 +08:00
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
|
|
|
when:
|
2017-03-24 14:40:15 +08:00
|
|
|
- "{{ inventory_hostname == groups[mon_group_name][0] }}"
|
2017-02-03 05:52:24 +08:00
|
|
|
- not mon_containerized_deployment_with_kv
|
2016-11-06 12:15:26 +08:00
|
|
|
|
2016-03-22 23:58:20 +08:00
|
|
|
- include: copy_configs.yml
|
|
|
|
when: not mon_containerized_deployment_with_kv
|
|
|
|
|
|
|
|
- name: create ceph rest api keyring when mon is containerized
|
2017-02-20 17:03:49 +08:00
|
|
|
command: docker exec ceph-mon-{{ ansible_hostname }} ceph --cluster {{ cluster }} auth get-or-create client.restapi osd 'allow *' mon 'allow *' -o /etc/ceph/{{ cluster }}.client.restapi.keyring
|
2016-03-22 23:58:20 +08:00
|
|
|
args:
|
2017-02-02 16:32:12 +08:00
|
|
|
creates: /etc/ceph/{{ cluster }}.client.restapi.keyring
|
2016-03-22 23:58:20 +08:00
|
|
|
changed_when: false
|
|
|
|
when:
|
2016-05-09 22:08:33 +08:00
|
|
|
- cephx
|
|
|
|
- mon_containerized_deployment
|
|
|
|
- groups[restapi_group_name] is defined
|
2017-03-24 14:40:15 +08:00
|
|
|
- "{{ inventory_hostname == groups[mon_group_name] | last }}"
|
2016-05-09 22:08:33 +08:00
|
|
|
- not mon_containerized_deployment_with_kv
|
2017-02-24 17:22:16 +08:00
|
|
|
|
|
|
|
- include: "{{ playbook_dir }}/roles/ceph-mon/tasks/set_osd_pool_default_pg_num.yml"
|
|
|
|
|
|
|
|
# create openstack pools only when all mons are up.
|
|
|
|
- include: "{{ playbook_dir }}/roles/ceph-mon/tasks/openstack_config.yml"
|
|
|
|
when:
|
|
|
|
- openstack_config
|
2017-03-24 14:40:15 +08:00
|
|
|
- "{{ inventory_hostname == groups[mon_group_name] | last }}"
|
2017-03-16 17:17:08 +08:00
|
|
|
|
2017-04-11 20:20:11 +08:00
|
|
|
- block:
|
|
|
|
- name: create ceph mgr keyring(s) when mon is containerized
|
2017-04-20 22:17:45 +08:00
|
|
|
command: docker exec ceph-mon-{{ ansible_hostname }} ceph --cluster {{ cluster }} auth get-or-create mgr.{{ hostvars[item]['ansible_hostname'] }} mon 'allow profile mgr' osd 'allow *' mds 'allow *' -o /etc/ceph/{{ cluster }}.mgr.{{ hostvars[item]['ansible_hostname'] }}.keyring
|
2017-04-11 20:20:11 +08:00
|
|
|
args:
|
|
|
|
creates: /etc/ceph/{{ cluster }}.mgr.{{ hostvars[item]['ansible_hostname'] }}.keyring
|
|
|
|
changed_when: false
|
|
|
|
when:
|
|
|
|
- cephx
|
|
|
|
- mon_containerized_deployment
|
|
|
|
- "{{ groups.get(mgr_group_name, []) | length > 0 }}"
|
|
|
|
- not mon_containerized_deployment_with_kv
|
|
|
|
with_items: "{{ groups.get(mgr_group_name, []) }}"
|
|
|
|
|
|
|
|
- name: stat for ceph mgr key(s)
|
|
|
|
stat:
|
|
|
|
path: /etc/ceph/{{ cluster }}.mgr.{{ hostvars[item]['ansible_hostname'] }}.keyring
|
|
|
|
with_items: "{{ groups.get(mgr_group_name, []) }}"
|
|
|
|
changed_when: false
|
|
|
|
become: false
|
|
|
|
failed_when: false
|
|
|
|
register: stat_mgr_keys
|
|
|
|
always_run: true
|
|
|
|
when:
|
|
|
|
- "{{ groups.get(mgr_group_name, []) | length > 0 }}"
|
|
|
|
|
|
|
|
- name: push ceph mgr key(s)
|
|
|
|
fetch:
|
|
|
|
src: "/etc/ceph/{{ cluster }}.mgr.{{ hostvars[item.item]['ansible_hostname'] }}.keyring"
|
|
|
|
dest: "{{ fetch_directory }}/docker_mon_files/{{ item.stat.path }}"
|
|
|
|
flat: yes
|
|
|
|
with_items:
|
|
|
|
- "{{ stat_mgr_keys.results }}"
|
|
|
|
when:
|
|
|
|
- item.stat.exists == true
|
2017-03-16 17:17:08 +08:00
|
|
|
when:
|
|
|
|
- inventory_hostname == groups[mon_group_name]|last
|
2017-05-04 17:14:58 +08:00
|
|
|
- ceph_release_num.{{ ceph_stable_release }} > ceph_release_num.jewel
|