2020-04-10 05:50:54 +08:00
|
|
|
---
|
|
|
|
#
|
|
|
|
# This playbook does a cephadm adopt for all the Ceph services
|
|
|
|
#
|
|
|
|
|
|
|
|
- name: confirm whether user really meant to adopt the cluster by cephadm
|
|
|
|
hosts: localhost
|
|
|
|
connection: local
|
|
|
|
become: false
|
|
|
|
gather_facts: false
|
|
|
|
vars_prompt:
|
|
|
|
- name: ireallymeanit
|
|
|
|
prompt: Are you sure you want to adopt the cluster by cephadm ?
|
|
|
|
default: 'no'
|
|
|
|
private: no
|
|
|
|
tasks:
|
|
|
|
- name: exit playbook, if user did not mean to adopt the cluster by cephadm
|
|
|
|
fail:
|
|
|
|
msg: >
|
|
|
|
Exiting cephadm-adopt playbook, cluster was NOT adopted.
|
|
|
|
To adopt the cluster, either say 'yes' on the prompt or
|
|
|
|
use `-e ireallymeanit=yes` on the command line when
|
|
|
|
invoking the playbook
|
|
|
|
when: ireallymeanit != 'yes'
|
|
|
|
|
2021-03-16 23:33:27 +08:00
|
|
|
- name: import_role ceph-defaults
|
|
|
|
import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: check if a legacy grafana-server group exists
|
|
|
|
import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: convert_grafana_server_group_name.yml
|
|
|
|
when: groups.get((grafana_server_group_name | default('grafana-server')), []) | length > 0
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: gather facts and prepare system for cephadm
|
|
|
|
hosts:
|
|
|
|
- "{{ mon_group_name|default('mons') }}"
|
|
|
|
- "{{ osd_group_name|default('osds') }}"
|
|
|
|
- "{{ mds_group_name|default('mdss') }}"
|
|
|
|
- "{{ rgw_group_name|default('rgws') }}"
|
|
|
|
- "{{ mgr_group_name|default('mgrs') }}"
|
|
|
|
- "{{ rbdmirror_group_name|default('rbdmirrors') }}"
|
|
|
|
- "{{ nfs_group_name|default('nfss') }}"
|
|
|
|
- "{{ iscsi_gw_group_name|default('iscsigws') }}"
|
2020-07-25 06:05:41 +08:00
|
|
|
- "{{ monitoring_group_name|default('monitoring') }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
become: true
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
gather_facts: false
|
|
|
|
vars:
|
|
|
|
delegate_facts_host: true
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: gather facts
|
|
|
|
setup:
|
2020-06-30 22:13:42 +08:00
|
|
|
gather_subset:
|
|
|
|
- 'all'
|
|
|
|
- '!facter'
|
|
|
|
- '!ohai'
|
2020-04-10 05:50:54 +08:00
|
|
|
when: not delegate_facts_host | bool or inventory_hostname in groups.get(client_group_name, [])
|
|
|
|
|
|
|
|
- name: gather and delegate facts
|
|
|
|
setup:
|
2020-06-30 22:13:42 +08:00
|
|
|
gather_subset:
|
|
|
|
- 'all'
|
|
|
|
- '!facter'
|
|
|
|
- '!ohai'
|
2020-04-10 05:50:54 +08:00
|
|
|
delegate_to: "{{ item }}"
|
|
|
|
delegate_facts: true
|
|
|
|
with_items: "{{ groups['all'] | difference(groups.get('clients', [])) }}"
|
|
|
|
run_once: true
|
|
|
|
when: delegate_facts_host | bool
|
|
|
|
|
|
|
|
- name: fail if one osd node is using filestore
|
|
|
|
fail:
|
|
|
|
msg: >
|
|
|
|
filestore OSDs are not supported with cephadm.
|
|
|
|
Please convert them with the filestore-to-bluestore.yml playbook first.
|
|
|
|
when:
|
|
|
|
- osd_group_name in group_names
|
|
|
|
- osd_objectstore == 'filestore'
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: container_binary.yml
|
|
|
|
|
2022-02-07 23:08:40 +08:00
|
|
|
- name: set_fact ceph_cmd
|
|
|
|
set_fact:
|
|
|
|
ceph_cmd: "{{ container_binary + ' run --rm --net=host -v /etc/ceph:/etc/ceph:z -v /var/lib/ceph:/var/lib/ceph:ro -v /var/run/ceph:/var/run/ceph:z --entrypoint=ceph ' + ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else 'ceph' }} --cluster {{ cluster }}"
|
|
|
|
|
|
|
|
- name: check pools have an application enabled
|
|
|
|
command: "{{ ceph_cmd }} health detail --format json"
|
|
|
|
register: health_detail
|
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
|
|
|
|
- name: check for POOL_APP_NOT_ENABLED warning
|
|
|
|
fail:
|
|
|
|
msg: "Make sure all your pool have an application enabled."
|
|
|
|
run_once: true
|
|
|
|
delegate_to: localhost
|
|
|
|
when:
|
|
|
|
- (health_detail.stdout | default('{}', True) | from_json)['status'] == "HEALTH_WARN"
|
|
|
|
- "'POOL_APP_NOT_ENABLED' in (health_detail.stdout | default('{}', True) | from_json)['checks']"
|
|
|
|
|
2021-01-19 01:15:04 +08:00
|
|
|
- import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: convert_grafana_server_group_name.yml
|
|
|
|
when: groups.get((grafana_server_group_name|default('grafana-server')), []) | length > 0
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: get the ceph version
|
|
|
|
command: "{{ container_binary + ' run --rm --entrypoint=ceph ' + ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else 'ceph' }} --version"
|
|
|
|
changed_when: false
|
|
|
|
register: ceph_version_out
|
|
|
|
|
|
|
|
- name: set_fact ceph_version
|
|
|
|
set_fact:
|
|
|
|
ceph_version: "{{ ceph_version_out.stdout.split(' ')[2] }}"
|
|
|
|
|
|
|
|
- name: fail on pre octopus ceph releases
|
|
|
|
fail:
|
|
|
|
msg: >
|
|
|
|
Your Ceph version {{ ceph_version }} is not supported for this operation.
|
|
|
|
Please upgrade your cluster with the rolling_update.yml playbook first.
|
|
|
|
when: ceph_version is version('15.2', '<')
|
|
|
|
|
|
|
|
- name: check if it is atomic host
|
|
|
|
stat:
|
|
|
|
path: /run/ostree-booted
|
|
|
|
register: stat_ostree
|
|
|
|
|
|
|
|
- name: set_fact is_atomic
|
|
|
|
set_fact:
|
|
|
|
is_atomic: "{{ stat_ostree.stat.exists }}"
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-container-engine
|
|
|
|
when: not containerized_deployment | bool
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-container-common
|
|
|
|
tasks_from: registry.yml
|
|
|
|
when:
|
|
|
|
- not containerized_deployment | bool
|
|
|
|
- ceph_docker_registry_auth | bool
|
|
|
|
|
|
|
|
- name: "pulling {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} image"
|
|
|
|
command: "{{ timeout_command }} {{ container_binary }} pull {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}"
|
|
|
|
changed_when: false
|
|
|
|
register: docker_image
|
|
|
|
until: docker_image.rc == 0
|
|
|
|
retries: "{{ docker_pull_retry }}"
|
|
|
|
delay: 10
|
|
|
|
when:
|
|
|
|
- not containerized_deployment | bool
|
|
|
|
- inventory_hostname in groups.get(mon_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(osd_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(mds_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(rgw_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(mgr_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(rbdmirror_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(iscsi_gw_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(nfs_group_name, [])
|
|
|
|
|
2021-08-05 23:48:38 +08:00
|
|
|
- name: configure repository for installing cephadm
|
|
|
|
when: containerized_deployment | bool
|
2022-02-01 00:25:19 +08:00
|
|
|
tags: with_pkg
|
2021-08-05 23:48:38 +08:00
|
|
|
block:
|
2021-11-29 17:48:23 +08:00
|
|
|
- name: set_fact ceph_origin
|
|
|
|
set_fact:
|
|
|
|
ceph_origin: repository
|
|
|
|
when: ceph_origin == 'dummy'
|
|
|
|
|
|
|
|
- name: set_fact ceph_repository
|
|
|
|
set_fact:
|
|
|
|
ceph_repository: community
|
|
|
|
when: ceph_repository == 'dummy'
|
|
|
|
|
2021-08-05 23:48:38 +08:00
|
|
|
- name: validate repository variables
|
|
|
|
import_role:
|
|
|
|
name: ceph-validate
|
|
|
|
tasks_from: check_repository.yml
|
|
|
|
|
|
|
|
- name: configure repository
|
|
|
|
import_role:
|
|
|
|
name: ceph-common
|
|
|
|
tasks_from: "configure_repository.yml"
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: install cephadm requirements
|
2022-02-01 00:25:19 +08:00
|
|
|
tags: with_pkg
|
2020-04-10 05:50:54 +08:00
|
|
|
package:
|
|
|
|
name: ['python3', 'lvm2']
|
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
|
|
|
|
|
|
|
- name: install cephadm
|
2022-02-01 00:25:19 +08:00
|
|
|
tags: with_pkg
|
2020-04-10 05:50:54 +08:00
|
|
|
package:
|
|
|
|
name: cephadm
|
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
|
|
|
|
|
|
|
- name: install cephadm mgr module
|
2022-02-01 00:25:19 +08:00
|
|
|
tags: with_pkg
|
2020-04-10 05:50:54 +08:00
|
|
|
package:
|
|
|
|
name: ceph-mgr-cephadm
|
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
|
|
|
when:
|
|
|
|
- not containerized_deployment | bool
|
|
|
|
- mgr_group_name in group_names
|
|
|
|
|
|
|
|
- name: get current fsid
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} fsid"
|
2020-04-10 05:50:54 +08:00
|
|
|
register: current_fsid
|
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
|
2021-03-17 17:07:27 +08:00
|
|
|
- name: get a minimal ceph configuration
|
|
|
|
command: "{{ ceph_cmd }} config generate-minimal-conf"
|
|
|
|
register: minimal_config
|
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: set_fact fsid
|
|
|
|
set_fact:
|
2021-01-21 06:39:44 +08:00
|
|
|
fsid: "{{ current_fsid.stdout }}"
|
|
|
|
run_once: true
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: enable cephadm mgr module
|
2020-11-16 23:11:20 +08:00
|
|
|
ceph_mgr_module:
|
|
|
|
name: cephadm
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
state: enable
|
|
|
|
environment:
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
run_once: true
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
|
|
|
- name: set cephadm as orchestrator backend
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} orch set backend cephadm"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
run_once: true
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
|
|
|
- name: generate cephadm ssh key
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} cephadm generate-key"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
run_once: true
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
|
|
|
- name: get the cephadm ssh pub key
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} cephadm get-pub-key"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
run_once: true
|
|
|
|
register: cephadm_pubpkey
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
2021-07-28 01:44:38 +08:00
|
|
|
- name: allow cephadm key for {{ cephadm_ssh_user | default('root') }} account
|
2020-04-10 05:50:54 +08:00
|
|
|
authorized_key:
|
2021-07-28 01:44:38 +08:00
|
|
|
user: "{{ cephadm_ssh_user | default('root') }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
key: '{{ cephadm_pubpkey.stdout }}'
|
|
|
|
|
2021-07-28 01:44:38 +08:00
|
|
|
- name: set cephadm ssh user to {{ cephadm_ssh_user | default('root') }}
|
|
|
|
command: "{{ ceph_cmd }} cephadm set-user {{ cephadm_ssh_user | default('root') }}"
|
|
|
|
changed_when: false
|
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: run cephadm prepare-host
|
|
|
|
command: cephadm prepare-host
|
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: set default container image in ceph configuration
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} config set global container_image {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
run_once: true
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
2020-07-10 06:38:17 +08:00
|
|
|
- name: set container image base in ceph configuration
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} config set mgr mgr/cephadm/container_image_base {{ ceph_docker_registry }}/{{ ceph_docker_image }}"
|
2020-07-10 06:38:17 +08:00
|
|
|
changed_when: false
|
|
|
|
run_once: true
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
|
|
|
- name: set dashboard container image in ceph mgr configuration
|
|
|
|
when: dashboard_enabled | bool
|
|
|
|
run_once: true
|
|
|
|
block:
|
|
|
|
- name: set alertmanager container image in ceph configuration
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} config set mgr mgr/cephadm/container_image_alertmanager {{ alertmanager_container_image }}"
|
2020-07-10 06:38:17 +08:00
|
|
|
changed_when: false
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
|
|
|
- name: set grafana container image in ceph configuration
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} config set mgr mgr/cephadm/container_image_grafana {{ grafana_container_image }}"
|
2020-07-10 06:38:17 +08:00
|
|
|
changed_when: false
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
|
|
|
- name: set node-exporter container image in ceph configuration
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} config set mgr mgr/cephadm/container_image_node_exporter {{ node_exporter_container_image }}"
|
2020-07-10 06:38:17 +08:00
|
|
|
changed_when: false
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
|
|
|
- name: set prometheus container image in ceph configuration
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} config set mgr mgr/cephadm/container_image_prometheus {{ prometheus_container_image }}"
|
2020-07-10 06:38:17 +08:00
|
|
|
changed_when: false
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
|
2021-07-12 20:58:42 +08:00
|
|
|
- name: enable the osd memory autotune for hci environment
|
|
|
|
command: "{{ ceph_cmd }} config set osd osd_memory_target_autotune true"
|
|
|
|
changed_when: false
|
|
|
|
run_once: true
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
when: is_hci | bool
|
|
|
|
|
2021-10-28 20:12:46 +08:00
|
|
|
- name: manage nodes with cephadm - ipv4
|
|
|
|
command: "{{ ceph_cmd }} orch host add {{ ansible_facts['nodename'] }} {{ ansible_facts['all_ipv4_addresses'] | ips_in_ranges(public_network.split(',')) | first }} {{ group_names | join(' ') }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
2021-10-28 20:12:46 +08:00
|
|
|
when: ip_version == 'ipv4'
|
|
|
|
|
|
|
|
- name: manage nodes with cephadm - ipv6
|
|
|
|
command: "{{ ceph_cmd }} orch host add {{ ansible_facts['nodename'] }} {{ ansible_facts['all_ipv6_addresses'] | ips_in_ranges(public_network.split(',')) | last | ipwrap }} {{ group_names | join(' ') }}"
|
|
|
|
changed_when: false
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
when: ip_version == 'ipv6'
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: add ceph label for core component
|
2021-08-27 00:06:11 +08:00
|
|
|
command: "{{ ceph_cmd }} orch host label add {{ ansible_facts['nodename'] }} ceph"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
2020-12-10 06:05:25 +08:00
|
|
|
when: inventory_hostname in groups.get(mon_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(osd_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(mds_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(rgw_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(mgr_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(rbdmirror_group_name, [])
|
2020-04-10 05:50:54 +08:00
|
|
|
|
2020-07-09 23:19:41 +08:00
|
|
|
- name: get the client.admin keyring
|
2020-10-24 03:19:53 +08:00
|
|
|
ceph_key:
|
|
|
|
name: client.admin
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
output_format: plain
|
|
|
|
state: info
|
|
|
|
environment:
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
2020-07-09 23:19:41 +08:00
|
|
|
run_once: true
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
register: client_admin_keyring
|
|
|
|
|
|
|
|
- name: copy the client.admin keyring
|
|
|
|
copy:
|
|
|
|
dest: "/etc/ceph/{{ cluster }}.client.admin.keyring"
|
|
|
|
content: "{{ client_admin_keyring.stdout + '\n' }}"
|
|
|
|
owner: "{{ ceph_uid | int if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
group: "{{ ceph_uid | int if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
mode: "{{ ceph_keyring_permissions }}"
|
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ item }}"
|
|
|
|
with_items:
|
|
|
|
- "{{ groups.get(osd_group_name, []) }}"
|
|
|
|
- "{{ groups.get(mds_group_name, []) }}"
|
|
|
|
- "{{ groups.get(rgw_group_name, []) }}"
|
|
|
|
- "{{ groups.get(mgr_group_name, []) }}"
|
|
|
|
- "{{ groups.get(rbdmirror_group_name, []) }}"
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: assimilate ceph configuration
|
2021-01-21 06:39:44 +08:00
|
|
|
command: "{{ ceph_cmd }} config assimilate-conf -i /etc/ceph/{{ cluster }}.conf"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
when: inventory_hostname in groups.get(mon_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(osd_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(mds_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(rgw_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(mgr_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(rbdmirror_group_name, [])
|
|
|
|
|
2020-07-20 22:41:53 +08:00
|
|
|
- name: set_fact cephadm_cmd
|
|
|
|
set_fact:
|
|
|
|
cephadm_cmd: "cephadm {{ '--docker' if container_binary == 'docker' else '' }}"
|
|
|
|
|
2021-09-10 05:14:10 +08:00
|
|
|
- name: set container registry info
|
|
|
|
command: "{{ ceph_cmd }} cephadm registry-login {{ ceph_docker_registry }} {{ ceph_docker_registry_username }} {{ ceph_docker_registry_password }}"
|
|
|
|
changed_when: false
|
2021-09-21 16:41:53 +08:00
|
|
|
no_log: true
|
2021-09-10 05:14:10 +08:00
|
|
|
run_once: true
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
when: ceph_docker_registry_auth | bool
|
|
|
|
|
2021-10-29 05:15:49 +08:00
|
|
|
- name: remove logrotate configuration
|
|
|
|
file:
|
|
|
|
path: /etc/logrotate.d/ceph
|
|
|
|
state: absent
|
|
|
|
when: inventory_hostname in groups.get(mon_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(osd_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(mds_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(rgw_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(mgr_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(rbdmirror_group_name, []) or
|
|
|
|
inventory_hostname in groups.get(iscsi_gw_group_name, [])
|
|
|
|
|
2021-10-12 22:01:20 +08:00
|
|
|
|
|
|
|
- name: store existing rbd mirror peers in monitor config store
|
|
|
|
hosts: "{{ rbdmirror_group_name|default('rbdmirrors') }}"
|
|
|
|
become: true
|
|
|
|
any_errors_fatal: true
|
|
|
|
gather_facts: true
|
|
|
|
tasks:
|
|
|
|
- name: store existing rbd mirror peers in monitor config store
|
|
|
|
when: ceph_rbd_mirror_configure | default(False) | bool
|
|
|
|
block:
|
|
|
|
- name: import ceph-defaults
|
|
|
|
import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: import ceph-validate
|
|
|
|
import_role:
|
|
|
|
name: ceph-validate
|
|
|
|
tasks_from: check_rbdmirror.yml
|
|
|
|
|
|
|
|
- name: import container_binary
|
|
|
|
import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: container_binary.yml
|
|
|
|
|
|
|
|
- name: set_fact rbd_cmd
|
|
|
|
set_fact:
|
|
|
|
rbd_cmd: "{{ container_binary + ' run --rm --net=host -v /etc/ceph:/etc/ceph:z -v /var/lib/ceph:/var/lib/ceph:z -v /var/run/ceph:/var/run/ceph:z --entrypoint=rbd ' + ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else 'ceph' }} --cluster {{ cluster }} -n client.rbd-mirror.{{ ansible_facts['hostname'] }} -k /etc/ceph/{{ cluster }}.client.rbd-mirror.{{ ansible_facts['hostname'] }}.keyring"
|
|
|
|
|
|
|
|
- name: set_fact admin_rbd_cmd
|
|
|
|
set_fact:
|
|
|
|
admin_rbd_cmd: "{{ container_binary + ' run --rm --net=host -v /etc/ceph:/etc/ceph:z -v /var/lib/ceph:/var/lib/ceph:z -v /var/run/ceph:/var/run/ceph:z --entrypoint=rbd ' + ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else 'ceph' }} --cluster {{ cluster }}"
|
|
|
|
- name: get mirror pool info
|
|
|
|
command: "{{ rbd_cmd }} mirror pool info {{ ceph_rbd_mirror_pool }} --format json"
|
|
|
|
register: mirror_pool_info
|
|
|
|
changed_when: false
|
|
|
|
|
|
|
|
- name: set_fact mirror_peer_found
|
|
|
|
set_fact:
|
|
|
|
mirror_peer_uuid: "{{ ((mirror_pool_info.stdout | from_json | default('{}'))['peers'] | selectattr('site_name', 'match', '^'+ceph_rbd_mirror_remote_cluster+'$') | map(attribute='uuid') | list) }}"
|
|
|
|
|
|
|
|
- name: remove current rbd mirror peer, add new peer into mon config store
|
|
|
|
when: mirror_peer_uuid | length > 0
|
|
|
|
block:
|
|
|
|
- name: get remote user keyring
|
|
|
|
slurp:
|
|
|
|
src: "/etc/ceph/{{ ceph_rbd_mirror_remote_cluster }}.{{ ceph_rbd_mirror_remote_user }}.keyring"
|
|
|
|
register: remote_user_keyring
|
|
|
|
|
|
|
|
- name: get quorum_status
|
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} quorum_status --format json"
|
|
|
|
changed_when: false
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
register: quorum_status
|
|
|
|
run_once: true
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: set_fact mon_ip_list
|
|
|
|
set_fact:
|
|
|
|
mon_ip_list: "{{ mon_ip_list | default([]) | union([item['addr'].split(':')[0]]) }}"
|
|
|
|
loop: "{{ (quorum_status.stdout | from_json | default('{}'))['monmap']['mons'] }}"
|
|
|
|
run_once: true
|
|
|
|
|
|
|
|
- name: remove current mirror peer
|
|
|
|
command: "{{ admin_rbd_cmd }} mirror pool peer remove {{ ceph_rbd_mirror_pool }} {{ ((mirror_pool_info.stdout | from_json | default('{}'))['peers'] | selectattr('site_name', 'match', '^'+ceph_rbd_mirror_remote_cluster+'$') | map(attribute='uuid') | list)[0] }}"
|
|
|
|
delegate_to: "{{ groups.get(mon_group_name | default('mons'))[0] }}"
|
|
|
|
changed_when: false
|
|
|
|
|
|
|
|
- name: get remote user keyring secret
|
|
|
|
set_fact:
|
|
|
|
remote_user_keyring_secret: "{{ item.split('=', 1)[1] | trim }}"
|
|
|
|
with_items: "{{ (remote_user_keyring.content | b64decode).split('\n') }}"
|
|
|
|
when: "'key = ' in item"
|
|
|
|
|
|
|
|
- name: create a temporary file
|
|
|
|
tempfile:
|
|
|
|
path: /etc/ceph
|
|
|
|
state: file
|
|
|
|
suffix: _ceph-ansible
|
|
|
|
register: tmp_file
|
|
|
|
delegate_to: "{{ groups.get(mon_group_name | default('mons'))[0] }}"
|
|
|
|
|
|
|
|
- name: write secret to temporary file
|
|
|
|
copy:
|
|
|
|
dest: "{{ tmp_file.path }}"
|
|
|
|
content: "{{ remote_user_keyring_secret }}"
|
|
|
|
delegate_to: "{{ groups.get(mon_group_name | default('mons'))[0] }}"
|
|
|
|
|
|
|
|
- name: re-add mirror peer
|
|
|
|
command: "{{ admin_rbd_cmd }} mirror pool peer add {{ ceph_rbd_mirror_pool }} {{ ceph_rbd_mirror_remote_user }}@{{ ceph_rbd_mirror_remote_cluster }} --remote-mon-host {{ ','.join(mon_ip_list) }} --remote-key-file {{ tmp_file.path }}"
|
|
|
|
delegate_to: "{{ groups.get(mon_group_name | default('mons'))[0] }}"
|
|
|
|
changed_when: false
|
|
|
|
|
|
|
|
- name: rm temporary file
|
|
|
|
file:
|
|
|
|
path: "{{ tmp_file.path }}"
|
|
|
|
state: absent
|
|
|
|
delegate_to: "{{ groups.get(mon_group_name | default('mons'))[0] }}"
|
|
|
|
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: adopt ceph mon daemons
|
|
|
|
hosts: "{{ mon_group_name|default('mons') }}"
|
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: adopt mon daemon
|
2020-12-01 03:32:54 +08:00
|
|
|
cephadm_adopt:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: "mon.{{ ansible_facts['hostname'] }}"
|
2020-12-01 03:32:54 +08:00
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
image: "{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}"
|
|
|
|
docker: "{{ true if container_binary == 'docker' else false }}"
|
|
|
|
pull: false
|
|
|
|
firewalld: "{{ true if configure_firewall | bool else false }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: reset failed ceph-mon systemd unit
|
2021-03-03 22:43:50 +08:00
|
|
|
command: "systemctl reset-failed ceph-mon@{{ ansible_facts['hostname'] }}" # noqa 303
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
2020-07-09 23:23:33 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
- name: remove ceph-mon systemd files
|
2020-04-10 05:50:54 +08:00
|
|
|
file:
|
2021-08-10 21:21:19 +08:00
|
|
|
path: "{{ item }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
2021-08-10 21:21:19 +08:00
|
|
|
loop:
|
|
|
|
- /etc/systemd/system/ceph-mon@.service
|
|
|
|
- /etc/systemd/system/ceph-mon@.service.d
|
|
|
|
- /etc/systemd/system/ceph-mon.target
|
2020-04-10 05:50:54 +08:00
|
|
|
|
2020-07-11 05:41:32 +08:00
|
|
|
- name: waiting for the monitor to join the quorum...
|
2020-10-27 05:33:45 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} quorum_status --format json"
|
2020-07-11 05:41:32 +08:00
|
|
|
changed_when: false
|
|
|
|
register: ceph_health_raw
|
|
|
|
until: >
|
2021-03-03 22:43:50 +08:00
|
|
|
ansible_facts['hostname'] in (ceph_health_raw.stdout | from_json)["quorum_names"]
|
2020-07-11 05:41:32 +08:00
|
|
|
retries: "{{ health_mon_check_retries }}"
|
|
|
|
delay: "{{ health_mon_check_delay }}"
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: adopt ceph mgr daemons
|
2021-06-10 21:12:41 +08:00
|
|
|
hosts: "{{ groups[mgr_group_name] | default(groups[mon_group_name]) }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: adopt mgr daemon
|
2020-12-01 03:32:54 +08:00
|
|
|
cephadm_adopt:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: "mgr.{{ ansible_facts['hostname'] }}"
|
2020-12-01 03:32:54 +08:00
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
image: "{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}"
|
|
|
|
docker: "{{ true if container_binary == 'docker' else false }}"
|
|
|
|
pull: false
|
|
|
|
firewalld: "{{ true if configure_firewall | bool else false }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: reset failed ceph-mgr systemd unit
|
2021-03-03 22:43:50 +08:00
|
|
|
command: "systemctl reset-failed ceph-mgr@{{ ansible_facts['hostname'] }}" # noqa 303
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
2020-07-09 23:23:33 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
- name: remove ceph-mgr systemd files
|
2020-04-10 05:50:54 +08:00
|
|
|
file:
|
2021-08-10 21:21:19 +08:00
|
|
|
path: "{{ item }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
2021-08-10 21:21:19 +08:00
|
|
|
loop:
|
|
|
|
- /etc/systemd/system/ceph-mgr@.service
|
|
|
|
- /etc/systemd/system/ceph-mgr@.service.d
|
|
|
|
- /etc/systemd/system/ceph-mgr.target
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
|
2021-09-24 20:45:11 +08:00
|
|
|
- name: stop and remove legacy iscsigw daemons
|
|
|
|
hosts: "{{ iscsi_gw_group_name|default('iscsigws') }}"
|
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
any_errors_fatal: True
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: stop and disable iscsigw systemd services
|
|
|
|
service:
|
|
|
|
name: '{{ item }}'
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
|
|
|
failed_when: false
|
|
|
|
with_items:
|
|
|
|
- rbd-target-api
|
|
|
|
- rbd-target-gw
|
|
|
|
- tcmu-runner
|
|
|
|
|
|
|
|
- name: reset failed iscsigw systemd units
|
|
|
|
command: 'systemctl reset-failed {{ item }}' # noqa 303
|
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
|
|
|
with_items:
|
|
|
|
- rbd-target-api
|
|
|
|
- rbd-target-gw
|
|
|
|
- tcmu-runner
|
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
|
|
|
- name: remove iscsigw systemd unit files
|
|
|
|
file:
|
|
|
|
path: '/etc/systemd/system/{{ item }}.service'
|
|
|
|
state: absent
|
|
|
|
with_items:
|
|
|
|
- rbd-target-api
|
|
|
|
- rbd-target-gw
|
|
|
|
- tcmu-runner
|
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
|
|
|
|
|
|
|
- name: redeploy iscsigw daemons
|
|
|
|
hosts: "{{ iscsi_gw_group_name|default('iscsigws') }}"
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
any_errors_fatal: True
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: update the placement of iscsigw hosts
|
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply iscsi {{ iscsi_pool_name | default('rbd') }} {{ api_user | default('admin') }} {{ api_password | default('admin') }} {{ trusted_ip_list | default('192.168.122.1') }} --placement='{{ groups.get(iscsi_gw_group_name, []) | length }} label:{{ iscsi_gw_group_name }}'"
|
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
|
2020-07-11 03:24:24 +08:00
|
|
|
- name: set osd flags
|
2021-01-22 01:12:17 +08:00
|
|
|
hosts: "{{ osd_group_name|default('osds') }}"
|
2020-07-11 03:24:24 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-07-11 03:24:24 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
2021-06-15 00:01:41 +08:00
|
|
|
- name: get pool list
|
2021-07-29 02:54:15 +08:00
|
|
|
command: "{{ ceph_cmd }} --cluster {{ cluster }} osd pool ls detail -f json"
|
2021-06-15 00:01:41 +08:00
|
|
|
register: pool_list
|
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
changed_when: false
|
2021-07-26 23:10:19 +08:00
|
|
|
check_mode: false
|
2021-06-15 00:01:41 +08:00
|
|
|
|
|
|
|
- name: get balancer module status
|
|
|
|
command: "{{ ceph_cmd }} --cluster {{ cluster }} balancer status -f json"
|
2021-08-03 23:58:49 +08:00
|
|
|
register: balancer_status_adopt
|
2021-06-15 00:01:41 +08:00
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
changed_when: false
|
2021-07-26 23:10:19 +08:00
|
|
|
check_mode: false
|
2021-06-15 00:01:41 +08:00
|
|
|
|
|
|
|
- name: set_fact pools_pgautoscaler_mode
|
|
|
|
set_fact:
|
|
|
|
pools_pgautoscaler_mode: "{{ pools_pgautoscaler_mode | default([]) | union([{'name': item.pool_name, 'mode': item.pg_autoscale_mode}]) }}"
|
|
|
|
run_once: true
|
2021-07-29 02:54:15 +08:00
|
|
|
with_items: "{{ pool_list.stdout | default('{}') | from_json }}"
|
2021-06-15 00:01:41 +08:00
|
|
|
|
|
|
|
- name: disable balancer
|
|
|
|
command: "{{ ceph_cmd }} --cluster {{ cluster }} balancer off"
|
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
changed_when: false
|
2021-08-03 23:58:49 +08:00
|
|
|
when: (balancer_status_adopt.stdout | from_json)['active'] | bool
|
2021-06-15 00:01:41 +08:00
|
|
|
|
|
|
|
- name: disable pg autoscale on pools
|
|
|
|
ceph_pool:
|
|
|
|
name: "{{ item.name }}"
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
pg_autoscale_mode: false
|
|
|
|
with_items: "{{ pools_pgautoscaler_mode }}"
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
run_once: true
|
|
|
|
when:
|
|
|
|
- pools_pgautoscaler_mode is defined
|
|
|
|
- item.mode == 'on'
|
|
|
|
environment:
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
|
|
|
|
2020-07-11 03:24:24 +08:00
|
|
|
- name: set osd flags
|
2021-01-22 01:12:17 +08:00
|
|
|
ceph_osd_flag:
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: present
|
2020-07-11 03:24:24 +08:00
|
|
|
with_items:
|
|
|
|
- noout
|
|
|
|
- nodeep-scrub
|
2021-01-22 01:12:17 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
run_once: true
|
2020-07-11 03:24:24 +08:00
|
|
|
environment:
|
2021-01-22 01:12:17 +08:00
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
2020-07-11 03:24:24 +08:00
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: adopt ceph osd daemons
|
|
|
|
hosts: "{{ osd_group_name|default('osd') }}"
|
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: container_binary.yml
|
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
|
|
|
- name: get osd list
|
2020-11-19 06:20:45 +08:00
|
|
|
ceph_volume:
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
action: list
|
|
|
|
environment:
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
register: osd_list
|
|
|
|
|
|
|
|
- name: set osd fsid for containerized deployment
|
|
|
|
lineinfile:
|
|
|
|
path: '/var/lib/ceph/osd/{{ cluster }}-{{ item.key }}/fsid'
|
|
|
|
line: "{{ (item.value | selectattr('type', 'equalto', 'block') | map(attribute='tags') | first)['ceph.osd_fsid'] }}"
|
|
|
|
owner: '{{ ceph_uid }}'
|
|
|
|
group: '{{ ceph_uid }}'
|
|
|
|
create: true
|
|
|
|
with_dict: '{{ osd_list.stdout | from_json }}'
|
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
|
|
|
- name: set osd type for containerized deployment
|
|
|
|
lineinfile:
|
|
|
|
path: '/var/lib/ceph/osd/{{ cluster }}-{{ item }}/type'
|
|
|
|
line: 'bluestore'
|
|
|
|
owner: '{{ ceph_uid }}'
|
|
|
|
group: '{{ ceph_uid }}'
|
|
|
|
create: true
|
|
|
|
loop: '{{ (osd_list.stdout | from_json).keys() | list }}'
|
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
|
|
|
- name: adopt osd daemon
|
2020-12-01 03:32:54 +08:00
|
|
|
cephadm_adopt:
|
|
|
|
name: "osd.{{ item }}"
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
image: "{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}"
|
|
|
|
docker: "{{ true if container_binary == 'docker' else false }}"
|
|
|
|
pull: false
|
|
|
|
firewalld: "{{ true if configure_firewall | bool else false }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
loop: '{{ (osd_list.stdout | from_json).keys() | list }}'
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
- name: remove ceph-osd systemd and ceph-osd-run.sh files
|
2020-04-10 05:50:54 +08:00
|
|
|
file:
|
2021-08-10 21:21:19 +08:00
|
|
|
path: "{{ item }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
|
|
|
loop:
|
|
|
|
- /etc/systemd/system/ceph-osd@.service
|
2021-08-10 21:21:19 +08:00
|
|
|
- /etc/systemd/system/ceph-osd@.service.d
|
|
|
|
- /etc/systemd/system/ceph-osd.target
|
2020-04-10 05:50:54 +08:00
|
|
|
- "{{ ceph_osd_docker_run_script_path | default('/usr/share') }}/ceph-osd-run.sh"
|
|
|
|
|
2021-01-21 06:39:44 +08:00
|
|
|
- name: remove osd directory
|
|
|
|
file:
|
|
|
|
path: "/var/lib/ceph/osd/{{ cluster }}-{{ item }}"
|
|
|
|
state: absent
|
|
|
|
loop: '{{ (osd_list.stdout | from_json).keys() | list }}'
|
|
|
|
|
2020-07-11 03:24:24 +08:00
|
|
|
- name: waiting for clean pgs...
|
2020-10-26 23:23:01 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} pg stat --format json"
|
2020-07-11 03:24:24 +08:00
|
|
|
changed_when: false
|
|
|
|
register: ceph_health_post
|
|
|
|
until: >
|
2020-10-26 23:23:01 +08:00
|
|
|
(((ceph_health_post.stdout | from_json).pg_summary.num_pg_by_state | length) > 0)
|
2020-07-11 03:24:24 +08:00
|
|
|
and
|
2020-10-26 23:23:01 +08:00
|
|
|
(((ceph_health_post.stdout | from_json).pg_summary.num_pg_by_state | selectattr('name', 'search', '^active\\+clean') | map(attribute='num') | list | sum) == (ceph_health_post.stdout | from_json).pg_summary.num_pgs)
|
2020-07-11 03:24:24 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
retries: "{{ health_osd_check_retries }}"
|
|
|
|
delay: "{{ health_osd_check_delay }}"
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: unset osd flags
|
2021-01-22 01:12:17 +08:00
|
|
|
hosts: "{{ osd_group_name|default('osds') }}"
|
2020-07-11 03:24:24 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-07-11 03:24:24 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
2021-06-15 00:01:41 +08:00
|
|
|
- name: re-enable pg autoscale on pools
|
|
|
|
ceph_pool:
|
|
|
|
name: "{{ item.name }}"
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
pg_autoscale_mode: true
|
|
|
|
with_items: "{{ pools_pgautoscaler_mode }}"
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
run_once: true
|
|
|
|
when:
|
|
|
|
- pools_pgautoscaler_mode is defined
|
|
|
|
- item.mode == 'on'
|
|
|
|
environment:
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
|
|
|
|
2020-07-11 03:24:24 +08:00
|
|
|
- name: unset osd flags
|
2021-01-22 01:12:17 +08:00
|
|
|
ceph_osd_flag:
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: absent
|
2020-07-11 03:24:24 +08:00
|
|
|
with_items:
|
|
|
|
- noout
|
|
|
|
- nodeep-scrub
|
2021-01-22 01:12:17 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
run_once: true
|
2020-07-11 03:24:24 +08:00
|
|
|
environment:
|
2021-01-22 01:12:17 +08:00
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
2020-07-11 03:24:24 +08:00
|
|
|
|
2021-06-15 00:01:41 +08:00
|
|
|
- name: re-enable balancer
|
|
|
|
command: "{{ ceph_cmd }} --cluster {{ cluster }} balancer on"
|
|
|
|
run_once: true
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
changed_when: false
|
2021-08-03 23:58:49 +08:00
|
|
|
when: (balancer_status_adopt.stdout | from_json)['active'] | bool
|
2021-06-15 00:01:41 +08:00
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: redeploy mds daemons
|
2020-07-16 06:25:57 +08:00
|
|
|
hosts: "{{ mds_group_name|default('mdss') }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: update the placement of metadata hosts
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply mds {{ cephfs }} --placement='{{ groups.get(mds_group_name, []) | length }} label:{{ mds_group_name }}'"
|
2020-04-10 05:50:54 +08:00
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
2020-07-16 06:25:57 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: stop and remove legacy ceph mds daemons
|
|
|
|
hosts: "{{ mds_group_name|default('mdss') }}"
|
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: stop and disable ceph-mds systemd service
|
|
|
|
service:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: "ceph-mds@{{ ansible_facts['hostname'] }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-01-21 06:39:44 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: stop and disable ceph-mds systemd target
|
|
|
|
service:
|
|
|
|
name: ceph-mds.target
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-08-10 21:21:19 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: reset failed ceph-mds systemd unit
|
2021-03-03 22:43:50 +08:00
|
|
|
command: "systemctl reset-failed ceph-mds@{{ ansible_facts['hostname'] }}" # noqa 303
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
2020-07-09 23:23:33 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
- name: remove ceph-mds systemd files
|
2020-04-10 05:50:54 +08:00
|
|
|
file:
|
2021-08-10 21:21:19 +08:00
|
|
|
path: "{{ item }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
2021-08-10 21:21:19 +08:00
|
|
|
loop:
|
|
|
|
- /etc/systemd/system/ceph-mds@.service
|
|
|
|
- /etc/systemd/system/ceph-mds@.service.d
|
|
|
|
- /etc/systemd/system/ceph-mds.target
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: remove legacy ceph mds data
|
|
|
|
file:
|
2021-03-03 22:43:50 +08:00
|
|
|
path: "/var/lib/ceph/mds/{{ cluster }}-{{ ansible_facts['hostname'] }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
|
|
|
|
2021-07-29 03:50:15 +08:00
|
|
|
- name: redeploy rgw daemons
|
|
|
|
hosts: "{{ rgw_group_name | default('rgws') }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
2021-06-23 21:24:23 +08:00
|
|
|
- import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: set_radosgw_address.yml
|
|
|
|
|
2021-07-29 03:50:15 +08:00
|
|
|
- name: import rgw ssl certificate into kv store
|
|
|
|
when: radosgw_frontend_ssl_certificate | length > 0
|
2020-04-10 05:50:54 +08:00
|
|
|
block:
|
2021-07-29 03:50:15 +08:00
|
|
|
- name: slurp rgw ssl certificate
|
|
|
|
slurp:
|
|
|
|
src: "{{ radosgw_frontend_ssl_certificate }}"
|
|
|
|
register: rgw_ssl_cert
|
|
|
|
|
|
|
|
- name: store ssl certificate in kv store (not multisite)
|
|
|
|
command: >
|
|
|
|
{{ container_binary }} run --rm -i -v /etc/ceph:/etc/ceph:z --entrypoint=ceph {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} --cluster {{ cluster }}
|
|
|
|
config-key set rgw/cert/rgw.{{ ansible_facts['hostname'] }} -i -
|
|
|
|
args:
|
|
|
|
stdin: "{{ rgw_ssl_cert.content | b64decode }}"
|
|
|
|
stdin_add_newline: no
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
2021-07-29 03:50:15 +08:00
|
|
|
when: not rgw_multisite | bool
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2021-07-29 03:50:15 +08:00
|
|
|
- name: store ssl certificate in kv store (multisite)
|
|
|
|
command: >
|
|
|
|
{{ container_binary }} run --rm -i -v /etc/ceph:/etc/ceph:z --entrypoint=ceph {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} --cluster {{ cluster }}
|
|
|
|
config-key set rgw/cert/rgw.{{ ansible_facts['hostname'] }}.{{ item.rgw_realm }}.{{ item.rgw_zone }}.{{ item.radosgw_frontend_port }} -i -
|
|
|
|
args:
|
|
|
|
stdin: "{{ rgw_ssl_cert.content | b64decode }}"
|
|
|
|
stdin_add_newline: no
|
2021-06-23 21:24:23 +08:00
|
|
|
changed_when: false
|
2021-07-29 03:50:15 +08:00
|
|
|
loop: "{{ rgw_instances }}"
|
|
|
|
when: rgw_multisite | bool
|
2021-06-23 21:24:23 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2021-07-29 03:50:15 +08:00
|
|
|
- name: update the placement of radosgw hosts
|
|
|
|
command: >
|
|
|
|
{{ cephadm_cmd }} shell --fsid {{ fsid }} --
|
|
|
|
ceph --cluster {{ cluster }} orch apply rgw {{ ansible_facts['hostname'] }}
|
2021-08-27 00:06:11 +08:00
|
|
|
--placement='count-per-host:{{ radosgw_num_instances }} {{ ansible_facts['nodename'] }}'
|
2021-07-29 03:50:15 +08:00
|
|
|
--port={{ radosgw_frontend_port }}
|
|
|
|
{{ '--ssl' if radosgw_frontend_ssl_certificate else '' }}
|
|
|
|
changed_when: false
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
when: not rgw_multisite | bool
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2021-06-23 21:24:23 +08:00
|
|
|
- name: update the placement of radosgw multisite hosts
|
2021-07-29 03:50:15 +08:00
|
|
|
command: >
|
|
|
|
{{ cephadm_cmd }} shell --fsid {{ fsid }} --
|
|
|
|
ceph --cluster {{ cluster }} orch apply rgw {{ ansible_facts['hostname'] }}.{{ item.rgw_realm }}.{{ item.rgw_zone }}.{{ item.radosgw_frontend_port }}
|
2021-08-27 00:06:11 +08:00
|
|
|
--placement={{ ansible_facts['nodename'] }}
|
2021-07-29 03:50:15 +08:00
|
|
|
--realm={{ item.rgw_realm }} --zone={{ item.rgw_zone }}
|
|
|
|
--port={{ item.radosgw_frontend_port }}
|
|
|
|
{{ '--ssl' if radosgw_frontend_ssl_certificate else '' }}
|
2020-07-10 06:28:49 +08:00
|
|
|
changed_when: false
|
2021-07-29 03:50:15 +08:00
|
|
|
loop: "{{ rgw_instances }}"
|
2021-06-23 21:24:23 +08:00
|
|
|
when: rgw_multisite | bool
|
2020-07-16 06:25:57 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2020-07-10 06:28:49 +08:00
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2021-03-30 20:30:29 +08:00
|
|
|
- name: stop and remove legacy ceph rgw daemons
|
2020-04-10 05:50:54 +08:00
|
|
|
hosts: "{{ rgw_group_name|default('rgws') }}"
|
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: set_radosgw_address.yml
|
|
|
|
|
|
|
|
- name: stop and disable ceph-radosgw systemd service
|
|
|
|
service:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: "ceph-radosgw@rgw.{{ ansible_facts['hostname'] }}.{{ item.instance_name }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-01-21 06:39:44 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
loop: '{{ rgw_instances }}'
|
|
|
|
|
|
|
|
- name: stop and disable ceph-radosgw systemd target
|
|
|
|
service:
|
2021-08-10 21:21:19 +08:00
|
|
|
name: ceph-radosgw.target
|
2020-04-10 05:50:54 +08:00
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-08-10 21:21:19 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: reset failed ceph-radosgw systemd unit
|
2021-03-03 22:43:50 +08:00
|
|
|
command: "systemctl reset-failed ceph-radosgw@rgw.{{ ansible_facts['hostname'] }}.{{ item.instance_name }}" # noqa 303
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
2020-07-09 23:23:33 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
loop: '{{ rgw_instances }}'
|
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
- name: remove ceph-radosgw systemd files
|
2020-04-10 05:50:54 +08:00
|
|
|
file:
|
2021-08-10 21:21:19 +08:00
|
|
|
path: "{{ item }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
2021-08-10 21:21:19 +08:00
|
|
|
loop:
|
|
|
|
- /etc/systemd/system/ceph-radosgw@.service
|
|
|
|
- /etc/systemd/system/ceph-radosgw@.service.d
|
|
|
|
- /etc/systemd/system/ceph-radosgw.target
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: remove legacy ceph radosgw data
|
|
|
|
file:
|
2021-03-03 22:43:50 +08:00
|
|
|
path: "/var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ ansible_facts['hostname'] }}.{{ item.instance_name }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
|
|
|
loop: '{{ rgw_instances }}'
|
|
|
|
|
|
|
|
- name: remove legacy ceph radosgw directory
|
|
|
|
file:
|
2021-03-03 22:43:50 +08:00
|
|
|
path: "/var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ ansible_facts['hostname'] }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
|
|
|
|
2021-04-06 21:07:26 +08:00
|
|
|
- name: stop and remove legacy ceph nfs daemons
|
|
|
|
hosts: "{{ nfs_group_name|default('nfss') }}"
|
2021-09-30 15:34:37 +08:00
|
|
|
tags: 'ceph_nfs_adopt'
|
2021-04-06 21:07:26 +08:00
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2021-04-06 21:07:26 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-nfs
|
|
|
|
tasks_from: create_rgw_nfs_user.yml
|
|
|
|
|
2021-10-15 06:44:02 +08:00
|
|
|
- name: enable ceph mgr nfs module
|
|
|
|
ceph_mgr_module:
|
|
|
|
name: "nfs"
|
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
state: enable
|
|
|
|
environment:
|
|
|
|
CEPH_CONTAINER_IMAGE: "{{ ceph_docker_registry + '/' + ceph_docker_image + ':' + ceph_docker_image_tag if containerized_deployment | bool else None }}"
|
|
|
|
CEPH_CONTAINER_BINARY: "{{ container_binary }}"
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
|
2021-04-06 21:07:26 +08:00
|
|
|
- name: stop and disable ceph-nfs systemd service
|
|
|
|
service:
|
|
|
|
name: "ceph-nfs@{{ ansible_facts['hostname'] }}"
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
|
|
|
failed_when: false
|
|
|
|
|
|
|
|
- name: reset failed ceph-nfs systemd unit
|
|
|
|
command: "systemctl reset-failed ceph-nfs@{{ ansible_facts['hostname'] }}" # noqa 303
|
|
|
|
changed_when: false
|
|
|
|
failed_when: false
|
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
- name: remove ceph-nfs systemd unit files
|
2021-04-06 21:07:26 +08:00
|
|
|
file:
|
2021-08-10 21:21:19 +08:00
|
|
|
path: "{{ item }}"
|
2021-04-06 21:07:26 +08:00
|
|
|
state: absent
|
2021-08-10 21:21:19 +08:00
|
|
|
loop:
|
|
|
|
- /etc/systemd/system/ceph-nfs@.service
|
|
|
|
- /etc/systemd/system/ceph-nfs@.service.d
|
2021-04-06 21:07:26 +08:00
|
|
|
|
|
|
|
- name: remove legacy ceph radosgw directory
|
|
|
|
file:
|
|
|
|
path: "/var/lib/ceph/radosgw/{{ cluster }}-rgw.{{ ansible_facts['hostname'] }}"
|
|
|
|
state: absent
|
|
|
|
|
2021-10-15 06:44:02 +08:00
|
|
|
- name: create nfs ganesha cluster
|
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} nfs cluster create {{ ansible_facts['hostname'] }} {{ ansible_facts['hostname'] }}"
|
2021-04-06 21:07:26 +08:00
|
|
|
changed_when: false
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2021-10-15 06:44:02 +08:00
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
2021-04-06 21:07:26 +08:00
|
|
|
|
2021-10-15 06:44:02 +08:00
|
|
|
- name: create cephfs export
|
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} nfs export create cephfs {{ cephfs }} {{ ansible_facts['hostname'] }} {{ ceph_nfs_ceph_pseudo_path }} --squash {{ ceph_nfs_ceph_squash }}"
|
|
|
|
changed_when: false
|
2021-04-26 15:16:40 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
environment:
|
2021-10-15 06:44:02 +08:00
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
when: nfs_file_gw | bool
|
2021-04-26 15:16:40 +08:00
|
|
|
|
2021-10-15 06:44:02 +08:00
|
|
|
- name: create rgw export
|
2022-01-28 21:12:07 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} nfs export create rgw --cluster-id {{ ansible_facts['hostname'] }} --pseudo-path {{ ceph_nfs_rgw_pseudo_path }} --user-id {{ ceph_nfs_rgw_user }} --squash {{ ceph_nfs_rgw_squash }}"
|
2021-04-06 21:07:26 +08:00
|
|
|
changed_when: false
|
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
2022-01-28 21:12:07 +08:00
|
|
|
when: nfs_obj_gw | bool
|
2021-04-06 21:07:26 +08:00
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: redeploy rbd-mirror daemons
|
2020-07-16 06:25:57 +08:00
|
|
|
hosts: "{{ rbdmirror_group_name|default('rbdmirrors') }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: update the placement of rbd-mirror hosts
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply rbd-mirror --placement='{{ groups.get(rbdmirror_group_name, []) | length }} label:{{ rbdmirror_group_name }}'"
|
2020-04-10 05:50:54 +08:00
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
2020-07-16 06:25:57 +08:00
|
|
|
delegate_to: "{{ groups[mon_group_name][0] }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: stop and remove legacy rbd-mirror daemons
|
|
|
|
hosts: "{{ rbdmirror_group_name|default('rbdmirrors') }}"
|
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: stop and disable rbd-mirror systemd service
|
|
|
|
service:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: "ceph-rbd-mirror@rbd-mirror.{{ ansible_facts['hostname'] }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-01-21 06:39:44 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: stop and disable rbd-mirror systemd target
|
|
|
|
service:
|
|
|
|
name: ceph-rbd-mirror.target
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-08-10 21:21:19 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: reset failed rbd-mirror systemd unit
|
2021-03-03 22:43:50 +08:00
|
|
|
command: "systemctl reset-failed ceph-rbd-mirror@rbd-mirror.{{ ansible_facts['hostname'] }}" # noqa 303
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
2020-07-09 23:23:33 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
when: containerized_deployment | bool
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
- name: remove rbd-mirror systemd files
|
2020-04-10 05:50:54 +08:00
|
|
|
file:
|
2021-08-10 21:21:19 +08:00
|
|
|
path: "{{ item }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: absent
|
2021-08-10 21:21:19 +08:00
|
|
|
loop:
|
|
|
|
- /etc/systemd/system/ceph-rbd-mirror@.service
|
|
|
|
- /etc/systemd/system/ceph-rbd-mirror@.service.d
|
|
|
|
- /etc/systemd/system/ceph-rbd-mirror.target
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
|
|
|
|
- name: redeploy ceph-crash daemons
|
|
|
|
hosts:
|
|
|
|
- "{{ mon_group_name|default('mons') }}"
|
|
|
|
- "{{ osd_group_name|default('osds') }}"
|
|
|
|
- "{{ mds_group_name|default('mdss') }}"
|
|
|
|
- "{{ rgw_group_name|default('rgws') }}"
|
|
|
|
- "{{ mgr_group_name|default('mgrs') }}"
|
|
|
|
- "{{ rbdmirror_group_name|default('rbdmirrors') }}"
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: stop and disable ceph-crash systemd service
|
|
|
|
service:
|
2021-04-28 21:11:25 +08:00
|
|
|
name: "{{ 'ceph-crash@' + ansible_facts['hostname'] if containerized_deployment | bool else 'ceph-crash.service' }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
state: stopped
|
|
|
|
enabled: false
|
|
|
|
failed_when: false
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
- name: remove ceph-crash systemd unit file
|
|
|
|
file:
|
|
|
|
path: /etc/systemd/system/ceph-crash@.service
|
|
|
|
state: absent
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: update the placement of ceph-crash hosts
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply crash --placement='label:ceph'"
|
2020-04-10 05:50:54 +08:00
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
2020-07-16 06:25:57 +08:00
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
2020-04-10 05:50:54 +08:00
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2021-08-10 21:21:19 +08:00
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: redeploy alertmanager/grafana/prometheus daemons
|
2020-07-25 06:05:41 +08:00
|
|
|
hosts: "{{ monitoring_group_name|default('monitoring') }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
serial: 1
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
2021-03-17 17:07:27 +08:00
|
|
|
- name: check whether a ceph config file is present
|
|
|
|
stat:
|
|
|
|
path: "/etc/ceph/{{ cluster }}.conf"
|
|
|
|
register: ceph_config
|
|
|
|
|
2021-12-08 04:11:50 +08:00
|
|
|
- name: ensure /etc/ceph is present
|
|
|
|
file:
|
|
|
|
path: /etc/ceph
|
|
|
|
state: directory
|
|
|
|
owner: "{{ ceph_uid | int if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
group: "{{ ceph_uid | int if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
mode: "{{ ceph_directories_mode }}"
|
|
|
|
|
2021-03-17 17:07:27 +08:00
|
|
|
- name: write a ceph.conf with minimal config
|
|
|
|
copy:
|
|
|
|
dest: "/etc/ceph/{{ cluster }}.conf"
|
|
|
|
content: "{{ minimal_config.stdout }}"
|
|
|
|
owner: "{{ ceph_uid | int if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
group: "{{ ceph_uid | int if containerized_deployment | bool else 'ceph' }}"
|
|
|
|
mode: "{{ ceph_keyring_permissions }}"
|
|
|
|
when: not ceph_config.stat.exists | bool
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: with dashboard enabled
|
|
|
|
when: dashboard_enabled | bool
|
|
|
|
block:
|
2021-01-21 06:39:44 +08:00
|
|
|
- name: ensure alertmanager/prometheus data directories are present
|
|
|
|
file:
|
|
|
|
path: "{{ item }}"
|
|
|
|
state: directory
|
|
|
|
owner: "{{ prometheus_user_id }}"
|
|
|
|
group: "{{ prometheus_user_id }}"
|
|
|
|
with_items:
|
|
|
|
- "{{ alertmanager_data_dir }}"
|
|
|
|
- "{{ prometheus_data_dir }}"
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
# (workaround) cephadm adopt alertmanager only stops prometheus-alertmanager systemd service
|
|
|
|
- name: stop and disable alertmanager systemd unit
|
|
|
|
service:
|
|
|
|
name: alertmanager
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-01-21 06:39:44 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
# (workaround) cephadm adopt alertmanager only uses /etc/prometheus/alertmanager.yml
|
|
|
|
- name: create alertmanager config symlink
|
|
|
|
file:
|
|
|
|
path: /etc/prometheus/alertmanager.yml
|
|
|
|
src: '{{ alertmanager_conf_dir }}/alertmanager.yml'
|
|
|
|
state: link
|
|
|
|
|
|
|
|
# (workaround) cephadm adopt alertmanager only uses /var/lib/prometheus/alertmanager/
|
|
|
|
- name: create alertmanager data symlink
|
|
|
|
file:
|
|
|
|
path: '{{ prometheus_data_dir }}/alertmanager'
|
|
|
|
src: '{{ alertmanager_data_dir }}'
|
|
|
|
state: link
|
|
|
|
|
|
|
|
- name: adopt alertmanager daemon
|
2020-12-01 03:32:54 +08:00
|
|
|
cephadm_adopt:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: "alertmanager.{{ ansible_facts['hostname'] }}"
|
2020-12-01 03:32:54 +08:00
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
image: "{{ alertmanager_container_image }}"
|
|
|
|
docker: "{{ true if container_binary == 'docker' else false }}"
|
|
|
|
pull: false
|
|
|
|
firewalld: "{{ true if configure_firewall | bool else false }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: remove alertmanager systemd unit file
|
|
|
|
file:
|
|
|
|
path: /etc/systemd/system/alertmanager.service
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: remove the legacy alertmanager data
|
|
|
|
file:
|
|
|
|
path: '{{ alertmanager_data_dir }}'
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: stop and disable prometheus systemd unit
|
|
|
|
service:
|
|
|
|
name: prometheus
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-01-21 06:39:44 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: remove alertmanager data symlink
|
|
|
|
file:
|
|
|
|
path: '{{ prometheus_data_dir }}/alertmanager'
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
# (workaround) cephadm adopt prometheus only uses /var/lib/prometheus/metrics/
|
|
|
|
- name: tmp copy the prometheus data
|
|
|
|
copy:
|
|
|
|
src: '{{ prometheus_data_dir }}/'
|
|
|
|
dest: /var/lib/prom_metrics
|
|
|
|
owner: 65534
|
|
|
|
group: 65534
|
|
|
|
remote_src: true
|
|
|
|
|
|
|
|
# (workaround) cephadm adopt prometheus only uses /var/lib/prometheus/metrics/
|
|
|
|
- name: restore the prometheus data
|
|
|
|
copy:
|
|
|
|
src: /var/lib/prom_metrics/
|
|
|
|
dest: /var/lib/prometheus/metrics
|
|
|
|
owner: 65534
|
|
|
|
group: 65534
|
|
|
|
remote_src: true
|
|
|
|
|
|
|
|
- name: remove the tmp prometheus data copy
|
|
|
|
file:
|
|
|
|
path: /var/lib/prom_metrics
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: adopt prometheus daemon
|
2020-12-01 03:32:54 +08:00
|
|
|
cephadm_adopt:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: "prometheus.{{ ansible_facts['hostname'] }}"
|
2020-12-01 03:32:54 +08:00
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
image: "{{ prometheus_container_image }}"
|
|
|
|
docker: "{{ true if container_binary == 'docker' else false }}"
|
|
|
|
pull: false
|
|
|
|
firewalld: "{{ true if configure_firewall | bool else false }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: remove prometheus systemd unit file
|
|
|
|
file:
|
|
|
|
path: /etc/systemd/system/prometheus.service
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: remove the legacy prometheus data
|
|
|
|
file:
|
|
|
|
path: '{{ prometheus_data_dir }}'
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
# (workaround) cephadm adopt grafana only stops grafana systemd service
|
|
|
|
- name: stop and disable grafana systemd unit
|
|
|
|
service:
|
|
|
|
name: grafana-server
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-01-21 06:39:44 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: adopt grafana daemon
|
2020-12-01 03:32:54 +08:00
|
|
|
cephadm_adopt:
|
2021-03-03 22:43:50 +08:00
|
|
|
name: "grafana.{{ ansible_facts['hostname'] }}"
|
2020-12-01 03:32:54 +08:00
|
|
|
cluster: "{{ cluster }}"
|
|
|
|
image: "{{ grafana_container_image }}"
|
|
|
|
docker: "{{ true if container_binary == 'docker' else false }}"
|
|
|
|
pull: false
|
|
|
|
firewalld: "{{ true if configure_firewall | bool else false }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: remove grafana systemd unit file
|
|
|
|
file:
|
|
|
|
path: /etc/systemd/system/grafana-server.service
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: remove the legacy grafana data
|
|
|
|
file:
|
|
|
|
path: /var/lib/grafana
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: redeploy node-exporter daemons
|
|
|
|
hosts:
|
|
|
|
- "{{ mon_group_name|default('mons') }}"
|
|
|
|
- "{{ osd_group_name|default('osds') }}"
|
|
|
|
- "{{ mds_group_name|default('mdss') }}"
|
|
|
|
- "{{ rgw_group_name|default('rgws') }}"
|
|
|
|
- "{{ mgr_group_name|default('mgrs') }}"
|
|
|
|
- "{{ rbdmirror_group_name|default('rbdmirrors') }}"
|
|
|
|
- "{{ nfs_group_name|default('nfss') }}"
|
|
|
|
- "{{ iscsi_gw_group_name|default('iscsigws') }}"
|
2020-07-25 06:05:41 +08:00
|
|
|
- "{{ monitoring_group_name|default('monitoring') }}"
|
2020-04-10 05:50:54 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: with dashboard enabled
|
|
|
|
when: dashboard_enabled | bool
|
|
|
|
block:
|
|
|
|
- name: stop and disable node-exporter systemd service
|
|
|
|
service:
|
|
|
|
name: node_exporter
|
|
|
|
state: stopped
|
|
|
|
enabled: false
|
2021-01-21 06:39:44 +08:00
|
|
|
failed_when: false
|
2020-04-10 05:50:54 +08:00
|
|
|
|
|
|
|
- name: remove node_exporter systemd unit file
|
|
|
|
file:
|
|
|
|
path: /etc/systemd/system/node_exporter.service
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: update the placement of node-exporter hosts
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply node-exporter --placement='*'"
|
2020-04-10 05:50:54 +08:00
|
|
|
run_once: true
|
|
|
|
changed_when: false
|
2020-07-16 06:25:57 +08:00
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
2020-04-10 05:50:54 +08:00
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2021-03-17 17:07:27 +08:00
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: adjust placement daemons
|
2020-07-16 06:25:57 +08:00
|
|
|
hosts: "{{ mon_group_name|default('mons') }}[0]"
|
2020-04-10 05:50:54 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-04-10 05:50:54 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: update the placement of monitor hosts
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply mon --placement='{{ groups.get(mon_group_name, []) | length }} label:{{ mon_group_name }}'"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2021-06-10 21:12:41 +08:00
|
|
|
- name: set_fact mgr_placement
|
|
|
|
set_fact:
|
|
|
|
mgr_placement_count: "{{ groups.get(mgr_group_name, []) | length if groups.get(mgr_group_name, []) | length > 0 else groups.get(mon_group_name, []) | length }}"
|
|
|
|
|
|
|
|
- name: set_fact mgr_placement_label
|
|
|
|
set_fact:
|
|
|
|
mgr_placement_label: "{{ mgr_group_name if groups.get(mgr_group_name, []) | length > 0 else mon_group_name }}"
|
|
|
|
|
2020-04-10 05:50:54 +08:00
|
|
|
- name: update the placement of manager hosts
|
2021-06-10 21:12:41 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply mgr --placement='{{ mgr_placement_count }} label:{{ mgr_placement_label }}'"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: with dashboard enabled
|
|
|
|
when: dashboard_enabled | bool
|
|
|
|
block:
|
|
|
|
- name: update the placement of alertmanager hosts
|
2020-07-25 06:05:41 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply alertmanager --placement='{{ groups.get(monitoring_group_name, []) | length }} label:{{ monitoring_group_name }}'"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: update the placement of grafana hosts
|
2020-07-25 06:05:41 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply grafana --placement='{{ groups.get(monitoring_group_name, []) | length }} label:{{ monitoring_group_name }}'"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: update the placement of prometheus hosts
|
2020-07-25 06:05:41 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch apply prometheus --placement='{{ groups.get(monitoring_group_name, []) | length }} label:{{ monitoring_group_name }}'"
|
2020-04-10 05:50:54 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
2020-07-11 02:13:15 +08:00
|
|
|
|
|
|
|
- name: show ceph orchestrator status
|
2020-07-16 06:25:57 +08:00
|
|
|
hosts: "{{ mon_group_name|default('mons') }}[0]"
|
2020-07-11 02:13:15 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
2021-06-28 20:12:40 +08:00
|
|
|
any_errors_fatal: True
|
2020-07-11 02:13:15 +08:00
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: show ceph orchestrator services
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch ls --refresh"
|
2020-07-11 02:13:15 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: show ceph orchestrator daemons
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell --fsid {{ fsid }} -- ceph --cluster {{ cluster }} orch ps --refresh"
|
2020-07-11 02:13:15 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
2020-07-16 03:21:25 +08:00
|
|
|
|
|
|
|
- name: inform users about cephadm
|
|
|
|
debug:
|
|
|
|
msg: |
|
|
|
|
This Ceph cluster is now managed by cephadm. Any new changes to the
|
|
|
|
cluster need to be achieved by using the cephadm CLI and you don't
|
|
|
|
need to use ceph-ansible playbooks anymore.
|