Merge "Deploy rbd-mirror using cephadm"

This commit is contained in:
Zuul 2021-06-16 16:56:35 +00:00 committed by Gerrit Code Review
commit 334bd99c52
6 changed files with 86 additions and 2 deletions

View File

@ -64,7 +64,7 @@ options:
- The Ceph daemon that is going to be applied
required: true
type: str
choices: ['host', 'mon', 'osd', 'mds', 'rgw', 'nfs', 'node-exporter', 'prometheus', 'alertmanager', 'grafana']
choices: ['host', 'mon', 'osd', 'mds', 'rgw', 'nfs', 'node-exporter', 'prometheus', 'alertmanager', 'grafana', 'rbd-mirror']
service_id:
description:
- The ID associated to the Ceph daemon

View File

@ -73,6 +73,11 @@
name: tripleo_cephadm
tasks_from: keys
- name: Configure RBD Mirror
import_role:
name: tripleo_cephadm
tasks_from: rbd_mirror
- name: Export configuration for tripleo_ceph_client
import_role:
name: tripleo_cephadm

View File

@ -52,3 +52,6 @@ tripleo_cephadm_ceph_nfs_rados_backend: true
tripleo_cephadm_certs: /etc/pki/tls
tripleo_cephadm_idmap_conf: "/etc/ganesha/idmap.conf"
tripleo_cephadm_idmap_overrides: {}
tripleo_cephadm_rbd_mirror_pool: ''
tripleo_cephadm_rbd_mirror_remote_cluster: not-ceph
tripleo_cephadm_rbd_mirror_remote_user: ''

View File

@ -33,7 +33,7 @@
{% endif %}
--entrypoint {{ ceph_command | default('ceph') }}
{{ tripleo_cephadm_container_ns }}/{{ tripleo_cephadm_container_image }}:{{ tripleo_cephadm_container_tag }}
{% if ceph_command|default('ceph') == 'ceph' or ceph_command|default('ceph') == 'rados' -%}
{% if ceph_command|default('ceph') == 'ceph' or ceph_command|default('ceph') == 'rados' or ceph_command|default('ceph') == 'rbd' -%}
{% if not admin_daemon|default(false) -%}
--fsid {{ tripleo_cephadm_fsid }} -c {{ tripleo_cephadm_conf }} -k {{ tripleo_cephadm_keyring_prefix }}.{{ select_keyring| default('admin') }}.keyring
{%- endif %}

View File

@ -0,0 +1,75 @@
---
# Copyright 2021 Red Hat, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
- name: Deploy the RBD Mirror daemon
block:
# Using two tasks with a boolean due to the ansible bug: https://github.com/ansible/ansible/issues/68364
- name: Collect the host and build the resulting host list
set_fact:
_hosts: "{{ _hosts|default([]) + [ hostvars[item].canonical_hostname ] }}"
with_items: "{{ groups['ceph_rbdmirror'] }}"
when: tripleo_cephadm_fqdn | bool
- name: Collect the host and build the resulting host list
set_fact:
_hosts: "{{ _hosts|default([]) + [ hostvars[item].inventory_hostname ] }}"
with_items: "{{ groups['ceph_rbdmirror'] }}"
when: not tripleo_cephadm_fqdn | bool
- name: Create the RBD Mirror Daemon spec definition
become: true
ceph_mkspec:
service_type: rbd-mirror
apply: true
hosts: "{{ _hosts | unique }}"
render_path: "{{ tripleo_cephadm_spec_home }}"
networks: "{{ radosgw_address_block }}"
register: spc
environment:
CEPH_CONTAINER_IMAGE: "{{ tripleo_cephadm_container_ns + '/' + tripleo_cephadm_container_image + ':' + tripleo_cephadm_container_tag }}"
CEPH_CONTAINER_BINARY: "{{ tripleo_cephadm_container_cli }}"
when:
- tripleo_enabled_services | intersect(['ceph_rbdmirror'])
- name: Configure RBD mirror
when: tripleo_cephadm_rbd_mirror_pool | default('') | length > 0
block:
- name: Get ceph_cli
include_tasks: ceph_cli.yaml
vars:
ceph_command: rbd
- name: enable mirroring on the pool
command: "{{ tripleo_cephadm_ceph_cli }} --cluster {{ tripleo_cephadm_cluster }} mirror pool enable {{ tripleo_cephadm_rbd_mirror_pool }} pool"
register: result
changed_when: false
retries: 90
delay: 1
until: result is succeeded
- name: list mirroring peer
command: "{{ tripleo_cephadm_ceph_cli }} --cluster {{ tripleo_cephadm_cluster }} mirror pool info {{ tripleo_cephadm_rbd_mirror_pool }}"
changed_when: false
register: mirror_peer
- name: add a mirroring peer
command: "{{ tripleo_cephadm_ceph_cli }} --cluster {{ tripleo_cephadm_cluster }} mirror pool peer add \
{{ tripleo_cephadm_rbd_mirror_pool }} {{ tripleo_cephadm_rbd_mirror_remote_user }}_{{ tripleo_cephadm_rbd_mirror_remote_cluster }}"
changed_when: false
when:
- tripleo_cephadm_rbd_mirror_remote_user | length > 0
- tripleo_cephadm_rbd_mirror_remote_cluster | length > 0
- tripleo_cephadm_rbd_mirror_remote_user not in mirror_peer.stdout

View File

@ -77,6 +77,7 @@
content: "{{ cephadm_extra_vars | combine(ceph_overrides|default({}))
| combine(ceph_monitoring_stack|default({}))
| combine(ceph_dashboard_vars|default({}))
| combine(cephadm_rbdmirror| default({}))
| combine(cephadm_rgw_vars|default({}))
| combine(cephfs_metadata|default({}))
| combine(ceph_nfs_vars|default({}))