2020-07-11 05:52:38 +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-07-11 05:52:38 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
vars:
|
|
|
|
delegate_facts_host: true
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: validate if monitor group doesn't exist or empty
|
|
|
|
fail:
|
|
|
|
msg: "you must add a [mons] group and add at least one node."
|
|
|
|
run_once: true
|
|
|
|
when: groups[mon_group_name] is undefined or groups[mon_group_name] | length == 0
|
|
|
|
|
|
|
|
- name: validate if manager group doesn't exist or empty
|
|
|
|
fail:
|
|
|
|
msg: "you must add a [mgrs] group and add at least one node."
|
|
|
|
run_once: true
|
|
|
|
when: groups[mgr_group_name] is undefined or groups[mgr_group_name] | length == 0
|
|
|
|
|
|
|
|
- name: validate monitor network configuration
|
|
|
|
fail:
|
|
|
|
msg: "Either monitor_address, monitor_address_block or monitor_interface must be provided"
|
|
|
|
when:
|
|
|
|
- mon_group_name in group_names
|
|
|
|
- monitor_address == 'x.x.x.x'
|
|
|
|
- monitor_address_block == 'subnet'
|
|
|
|
- monitor_interface == 'interface'
|
|
|
|
|
|
|
|
- name: validate dashboard configuration
|
|
|
|
when: dashboard_enabled | bool
|
|
|
|
run_once: true
|
|
|
|
block:
|
2020-07-25 06:05:41 +08:00
|
|
|
- name: fail if [monitoring] group doesn't exist or empty
|
2020-07-11 05:52:38 +08:00
|
|
|
fail:
|
2020-07-25 06:05:41 +08:00
|
|
|
msg: "you must add a [monitoring] group and add at least one node."
|
|
|
|
when: groups[monitoring_group_name] is undefined or groups[monitoring_group_name] | length == 0
|
2020-07-11 05:52:38 +08:00
|
|
|
|
|
|
|
- name: fail when dashboard_admin_password is not set
|
|
|
|
fail:
|
|
|
|
msg: "you must set dashboard_admin_password."
|
|
|
|
when: dashboard_admin_password is undefined
|
|
|
|
|
|
|
|
- name: validate container registry credentials
|
|
|
|
fail:
|
|
|
|
msg: 'ceph_docker_registry_username and/or ceph_docker_registry_password variables need to be set'
|
|
|
|
when:
|
|
|
|
- ceph_docker_registry_auth | bool
|
|
|
|
- (ceph_docker_registry_username is not defined or ceph_docker_registry_password is not defined) or
|
|
|
|
(ceph_docker_registry_username | length == 0 or ceph_docker_registry_password | length == 0)
|
|
|
|
|
|
|
|
- name: gather facts
|
|
|
|
setup:
|
|
|
|
gather_subset:
|
|
|
|
- 'all'
|
|
|
|
- '!facter'
|
|
|
|
- '!ohai'
|
|
|
|
when: not delegate_facts_host | bool
|
|
|
|
|
|
|
|
- name: gather and delegate facts
|
|
|
|
setup:
|
|
|
|
gather_subset:
|
|
|
|
- 'all'
|
|
|
|
- '!facter'
|
|
|
|
- '!ohai'
|
|
|
|
delegate_to: "{{ item }}"
|
|
|
|
delegate_facts: true
|
|
|
|
with_items: "{{ groups['all'] }}"
|
|
|
|
run_once: true
|
|
|
|
when: delegate_facts_host | bool
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: container_binary.yml
|
|
|
|
|
|
|
|
- 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
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-container-common
|
|
|
|
tasks_from: registry.yml
|
|
|
|
when: ceph_docker_registry_auth | bool
|
|
|
|
|
2021-09-15 20:53:04 +08:00
|
|
|
- name: configure repository for installing cephadm
|
|
|
|
vars:
|
|
|
|
ceph_origin: repository
|
|
|
|
ceph_repository: community
|
|
|
|
block:
|
|
|
|
- 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-07-11 05:52:38 +08:00
|
|
|
- name: install cephadm requirements
|
|
|
|
package:
|
|
|
|
name: ['python3', 'lvm2']
|
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
|
|
|
|
2021-09-15 20:53:04 +08:00
|
|
|
- name: install cephadm
|
|
|
|
package:
|
|
|
|
name: cephadm
|
|
|
|
register: result
|
|
|
|
until: result is succeeded
|
2020-07-11 05:52:38 +08:00
|
|
|
|
2020-07-20 22:41:53 +08:00
|
|
|
- name: set_fact cephadm_cmd
|
|
|
|
set_fact:
|
|
|
|
cephadm_cmd: "cephadm {{ '--docker' if container_binary == 'docker' else '' }}"
|
|
|
|
|
2020-07-11 05:52:38 +08:00
|
|
|
- name: bootstrap the cluster
|
|
|
|
hosts: "{{ mon_group_name|default('mons') }}[0]"
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- import_role:
|
|
|
|
name: ceph-facts
|
|
|
|
tasks_from: set_monitor_address.yml
|
|
|
|
|
|
|
|
- name: create /etc/ceph directory
|
|
|
|
file:
|
|
|
|
path: /etc/ceph
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: bootstrap the new cluster
|
2020-10-16 08:42:00 +08:00
|
|
|
cephadm_bootstrap:
|
|
|
|
mon_ip: "{{ _current_monitor_address }}"
|
|
|
|
image: "{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}"
|
|
|
|
docker: "{{ true if container_binary == 'docker' else false }}"
|
|
|
|
pull: false
|
|
|
|
dashboard: "{{ dashboard_enabled }}"
|
|
|
|
dashboard_user: "{{ dashboard_admin_user if dashboard_enabled | bool else omit }}"
|
|
|
|
dashboard_password: "{{ dashboard_admin_password if dashboard_enabled | bool else omit }}"
|
|
|
|
monitoring: false
|
|
|
|
firewalld: "{{ configure_firewall }}"
|
2021-10-10 06:52:08 +08:00
|
|
|
ssh_user: "{{ cephadm_ssh_user | default('root') }}"
|
|
|
|
ssh_config: "{{ cephadm_ssh_config | default(omit) }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
|
|
|
|
- name: set default container image in ceph configuration
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} config set global container_image {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: set container image base in ceph configuration
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} config set mgr mgr/cephadm/container_image_base {{ ceph_docker_registry }}/{{ ceph_docker_image }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: set dashboard container image in ceph mgr configuration
|
|
|
|
when: dashboard_enabled | bool
|
|
|
|
block:
|
|
|
|
- name: set alertmanager container image in ceph configuration
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} config set mgr mgr/cephadm/container_image_alertmanager {{ alertmanager_container_image }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: set grafana container image in ceph configuration
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} config set mgr mgr/cephadm/container_image_grafana {{ grafana_container_image }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: set node-exporter container image in ceph configuration
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} config set mgr mgr/cephadm/container_image_node_exporter {{ node_exporter_container_image }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: set prometheus container image in ceph configuration
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} config set mgr mgr/cephadm/container_image_prometheus {{ prometheus_container_image }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: add the other nodes
|
|
|
|
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-07-11 05:52:38 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: get the cephadm ssh pub key
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} cephadm get-pub-key"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
run_once: true
|
|
|
|
register: cephadm_pubpkey
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
2021-09-15 21:02:05 +08:00
|
|
|
- name: allow cephadm key for {{ cephadm_ssh_user | default('root') }} account
|
2020-07-11 05:52:38 +08:00
|
|
|
authorized_key:
|
2021-09-15 21:02:05 +08:00
|
|
|
user: "{{ cephadm_ssh_user | default('root') }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
key: '{{ cephadm_pubpkey.stdout }}'
|
|
|
|
|
|
|
|
- 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: manage nodes with cephadm
|
2021-10-28 19:43:57 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} orch host add {{ ansible_facts['hostname'] }} {{ ansible_facts['default_ipv4']['address'] }} {{ group_names | join(' ') }} {{ '_admin' if mon_group_name | default('mons') in group_names else '' }}"
|
2020-07-11 05:52:38 +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 }}'
|
|
|
|
|
|
|
|
- name: add ceph label for core component
|
2021-03-03 22:43:50 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} orch host label add {{ ansible_facts['hostname'] }} ceph"
|
2020-07-11 05:52:38 +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-07-11 05:52:38 +08:00
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: adjust service placement
|
|
|
|
hosts: "{{ mon_group_name|default('mons') }}[0]"
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
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 -- ceph --cluster {{ cluster }} orch apply mon --placement='label:{{ mon_group_name }}'"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: waiting for the monitor to join the quorum...
|
2020-10-27 05:33:45 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} quorum_status --format json"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
register: ceph_health_raw
|
|
|
|
until: (ceph_health_raw.stdout | from_json)["quorum_names"] | length == groups.get(mon_group_name, []) | length
|
|
|
|
retries: "{{ health_mon_check_retries }}"
|
|
|
|
delay: "{{ health_mon_check_delay }}"
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: update the placement of manager hosts
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} orch apply mgr --placement='label:{{ mgr_group_name }}'"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: update the placement of crash hosts
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} orch apply crash --placement='label:ceph'"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: adjust monitoring service placement
|
2020-07-25 06:05:41 +08:00
|
|
|
hosts: "{{ monitoring_group_name|default('monitoring') }}"
|
2020-07-11 05:52:38 +08:00
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: with dashboard enabled
|
|
|
|
when: dashboard_enabled | bool
|
|
|
|
delegate_to: '{{ groups[mon_group_name][0] }}'
|
|
|
|
run_once: true
|
|
|
|
block:
|
|
|
|
- name: enable the prometheus module
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} mgr module enable prometheus"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: update the placement of alertmanager hosts
|
2020-07-25 06:05:41 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} orch apply alertmanager --placement='label:{{ monitoring_group_name }}'"
|
2020-07-11 05:52:38 +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 -- ceph --cluster {{ cluster }} orch apply grafana --placement='label:{{ monitoring_group_name }}'"
|
2020-07-11 05:52:38 +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 -- ceph --cluster {{ cluster }} orch apply prometheus --placement='label:{{ monitoring_group_name }}'"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: update the placement of node-exporter hosts
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} orch apply node-exporter --placement='*'"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: print information
|
|
|
|
hosts: "{{ mon_group_name|default('mons') }}[0]"
|
|
|
|
become: true
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- import_role:
|
|
|
|
name: ceph-defaults
|
|
|
|
|
|
|
|
- name: show ceph orchestrator services
|
2020-07-20 22:41:53 +08:00
|
|
|
command: "{{ cephadm_cmd }} shell -- ceph --cluster {{ cluster }} orch ls --refresh"
|
2020-07-11 05:52:38 +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 -- ceph --cluster {{ cluster }} orch ps --refresh"
|
2020-07-11 05:52:38 +08:00
|
|
|
changed_when: false
|
|
|
|
environment:
|
|
|
|
CEPHADM_IMAGE: '{{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }}'
|
|
|
|
|
|
|
|
- name: inform users about cephadm
|
|
|
|
debug:
|
|
|
|
msg: |
|
|
|
|
This Ceph cluster is now ready to receive more configuration like
|
|
|
|
adding OSD, MDS daemons, create pools or keyring.
|
|
|
|
You can do this by using the cephadm CLI and you don't need to use
|
|
|
|
ceph-ansible playbooks anymore.
|