2017-08-04 22:57:46 +08:00
|
|
|
---
|
2019-02-05 07:21:42 +08:00
|
|
|
- name: include create_ceph_initial_dirs.yml
|
|
|
|
include_tasks: create_ceph_initial_dirs.yml
|
2019-05-22 16:02:42 +08:00
|
|
|
when: containerized_deployment | bool
|
2019-02-05 07:21:42 +08:00
|
|
|
|
2020-07-01 16:47:45 +08:00
|
|
|
- name: include_tasks rgw_systemd_environment_file.yml
|
|
|
|
include_tasks: rgw_systemd_environment_file.yml
|
|
|
|
when: inventory_hostname in groups.get(rgw_group_name, [])
|
|
|
|
|
2019-03-28 16:13:30 +08:00
|
|
|
- name: config file operations related to OSDs
|
|
|
|
when:
|
|
|
|
- inventory_hostname in groups.get(osd_group_name, [])
|
2019-03-29 03:34:48 +08:00
|
|
|
# the rolling_update.yml playbook sets num_osds to the number of currently
|
|
|
|
# running osds
|
2019-05-22 16:02:42 +08:00
|
|
|
- not rolling_update | bool
|
2019-03-28 16:13:30 +08:00
|
|
|
block:
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: reset num_osds
|
|
|
|
set_fact:
|
|
|
|
num_osds: 0
|
2021-03-12 22:49:15 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: count number of osds for lvm scenario
|
|
|
|
set_fact:
|
|
|
|
num_osds: "{{ lvm_volumes | length | int }}"
|
|
|
|
when: lvm_volumes | default([]) | length > 0
|
2019-01-31 07:07:30 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- block:
|
|
|
|
- name: look up for ceph-volume rejected devices
|
|
|
|
ceph_volume:
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
action: "inventory"
|
|
|
|
register: rejected_devices
|
|
|
|
environment:
|
|
|
|
CEPH_VOLUME_DEBUG: "{{ ceph_volume_debug }}"
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
|
|
|
PYTHONIOENCODING: utf-8
|
2020-01-10 02:31:57 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: set_fact rejected_devices
|
|
|
|
set_fact:
|
|
|
|
_rejected_devices: "{{ _rejected_devices | default([]) + [item.path] }}"
|
|
|
|
with_items: "{{ rejected_devices.stdout | default('{}') | from_json }}"
|
|
|
|
when: "'Used by ceph-disk' in item.rejected_reasons"
|
2020-01-10 02:31:57 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: set_fact _devices
|
|
|
|
set_fact:
|
|
|
|
_devices: "{{ devices | difference(_rejected_devices | default([])) }}"
|
2020-01-10 02:31:57 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: run 'ceph-volume lvm batch --report' to see how many osds are to be created
|
|
|
|
ceph_volume:
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
objectstore: "{{ osd_objectstore }}"
|
|
|
|
batch_devices: "{{ _devices }}"
|
|
|
|
osds_per_device: "{{ osds_per_device | default(1) | int }}"
|
|
|
|
journal_size: "{{ journal_size }}"
|
|
|
|
block_db_size: "{{ block_db_size }}"
|
|
|
|
report: true
|
|
|
|
action: "batch"
|
|
|
|
register: lvm_batch_report
|
|
|
|
environment:
|
|
|
|
CEPH_VOLUME_DEBUG: "{{ ceph_volume_debug }}"
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
|
|
|
PYTHONIOENCODING: utf-8
|
|
|
|
when: _devices | default([]) | length > 0
|
2019-01-31 07:07:30 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: set_fact num_osds from the output of 'ceph-volume lvm batch --report' (legacy report)
|
|
|
|
set_fact:
|
|
|
|
num_osds: "{{ ((lvm_batch_report.stdout | default('{}') | from_json).osds | default([]) | length | int) + (_rejected_devices | default([]) | length | int) }}"
|
|
|
|
when:
|
|
|
|
- (lvm_batch_report.stdout | default('{}') | from_json) is mapping
|
|
|
|
- (lvm_batch_report.stdout | default('{}') | from_json).changed | default(true) | bool
|
2020-12-16 02:52:43 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: set_fact num_osds from the output of 'ceph-volume lvm batch --report' (new report)
|
|
|
|
set_fact:
|
|
|
|
num_osds: "{{ ((lvm_batch_report.stdout | default('{}') | from_json) | default([]) | length | int) + (_rejected_devices | default([]) | length | int) }}"
|
|
|
|
when:
|
|
|
|
- (lvm_batch_report.stdout | default('{}') | from_json) is not mapping
|
|
|
|
- (lvm_batch_report.stdout | default('{}') | from_json).changed | default(true) | bool
|
|
|
|
when:
|
|
|
|
- devices | default([]) | length > 0
|
2019-01-31 07:07:30 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: run 'ceph-volume lvm list' to see how many osds have already been created
|
|
|
|
ceph_volume:
|
|
|
|
action: "list"
|
|
|
|
register: lvm_list
|
|
|
|
environment:
|
|
|
|
CEPH_VOLUME_DEBUG: "{{ ceph_volume_debug }}"
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
|
|
|
PYTHONIOENCODING: utf-8
|
|
|
|
changed_when: false
|
2019-01-31 07:07:30 +08:00
|
|
|
|
2022-07-11 16:03:53 +08:00
|
|
|
- name: set_fact num_osds (add existing osds)
|
|
|
|
set_fact:
|
|
|
|
num_osds: "{{ lvm_list.stdout | default('{}') | from_json | length | int + num_osds | default(0) | int }}"
|
2019-01-31 07:07:30 +08:00
|
|
|
|
2022-09-25 01:07:36 +08:00
|
|
|
- name: set osd related config facts
|
|
|
|
when: inventory_hostname in groups.get(osd_group_name, [])
|
|
|
|
block:
|
2022-09-25 01:46:20 +08:00
|
|
|
- name: set_fact _osd_memory_target, override from ceph_conf_overrides
|
2022-08-10 04:44:36 +08:00
|
|
|
set_fact:
|
2022-09-25 01:46:20 +08:00
|
|
|
_osd_memory_target: "{{ item }}"
|
2022-08-10 04:44:36 +08:00
|
|
|
loop:
|
|
|
|
- "{{ ceph_conf_overrides.get('osd', {}).get('osd memory target', '') }}"
|
|
|
|
- "{{ ceph_conf_overrides.get('osd', {}).get('osd_memory_target', '') }}"
|
2022-08-16 15:43:50 +08:00
|
|
|
when: item
|
2022-08-10 04:44:36 +08:00
|
|
|
|
2022-07-11 16:23:56 +08:00
|
|
|
- name: set_fact _osd_memory_target
|
|
|
|
set_fact:
|
|
|
|
_osd_memory_target: "{{ ((ansible_facts['memtotal_mb'] * 1048576 * safety_factor | float) / num_osds | float) | int }}"
|
|
|
|
when:
|
2022-09-25 01:46:20 +08:00
|
|
|
- _osd_memory_target is undefined
|
2022-07-11 16:23:56 +08:00
|
|
|
- num_osds | default(0) | int > 0
|
2022-08-16 15:43:50 +08:00
|
|
|
- ((ansible_facts['memtotal_mb'] * 1048576 * safety_factor | float) / num_osds | float) > (osd_memory_target | float)
|
2022-07-11 16:23:56 +08:00
|
|
|
|
2020-10-05 23:41:20 +08:00
|
|
|
- name: create ceph conf directory
|
|
|
|
file:
|
|
|
|
path: "/etc/ceph"
|
|
|
|
state: directory
|
|
|
|
owner: "ceph"
|
|
|
|
group: "ceph"
|
|
|
|
mode: "{{ ceph_directories_mode }}"
|
2019-05-22 16:02:42 +08:00
|
|
|
when: not containerized_deployment | bool
|
2017-08-04 22:57:46 +08:00
|
|
|
|
2020-10-05 23:41:20 +08:00
|
|
|
- name: "generate {{ cluster }}.conf configuration file"
|
2022-01-13 23:57:50 +08:00
|
|
|
openstack.config_template.config_template:
|
2020-10-05 23:41:20 +08:00
|
|
|
src: "ceph.conf.j2"
|
|
|
|
dest: "{{ ceph_conf_key_directory }}/{{ cluster }}.conf"
|
|
|
|
owner: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
group: "{{ ceph_uid if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
mode: "0644"
|
|
|
|
config_overrides: "{{ ceph_conf_overrides }}"
|
|
|
|
config_type: ini
|
|
|
|
notify:
|
|
|
|
- restart ceph mons
|
|
|
|
- restart ceph osds
|
|
|
|
- restart ceph mdss
|
|
|
|
- restart ceph rgws
|
|
|
|
- restart ceph mgrs
|
|
|
|
- restart ceph rbdmirrors
|
|
|
|
- restart ceph rbd-target-api-gw
|