Ceph
PLEASE NOTE: This document applies to an unreleased version of Rook. It is strongly recommended that you only use official releases of Rook, as unreleased versions are subject to changes and incompatibilities that will not be supported in the official releases.
If you are using an official release version of Rook, you should refer to the documentation for your specific version.
Documentation for other releases can be found by using the version selector in the bottom left of any doc page.Ceph RBDMirror CRD
Rook allows creation and updating rbd-mirror daemon(s) through the custom resource definitions (CRDs). RBD images can be asynchronously mirrored between two Ceph clusters. For more information about user management and capabilities see the Ceph docs.
Creating daemons
To get you started, here is a simple example of a CRD to deploy an rbd-mirror daemon.
apiVersion: ceph.rook.io/v1
kind: CephRBDMirror
metadata:
name: my-rbd-mirror
namespace: rook-ceph
spec:
count: 1
Prerequisites
This guide assumes you have created a Rook cluster as explained in the main Quickstart guide
Settings
If any setting is unspecified, a suitable default will be used automatically.
RBDMirror metadata
name
: The name that will be used for the Ceph RBD Mirror daemon.namespace
: The Kubernetes namespace that will be created for the Rook cluster. The services, pods, and other resources created by the operator will be added to this namespace.
RBDMirror Settings
count
: The number of rbd mirror instance to run.placement
: The rbd mirror pods can be given standard Kubernetes placement restrictions withnodeAffinity
,tolerations
,podAffinity
, andpodAntiAffinity
similar to placement defined for daemons configured by the cluster CRD..annotations
: Key value pair list of annotations to add.labels
: Key value pair list of labels to add.resources
: The resource requirements for the rbd mirror pods.priorityClassName
: The priority class to set on the rbd mirror pods.
Configuring mirroring peers
Configure mirroring peers individually for each CephBlockPool. Refer to the CephBlockPool documentation for more detail.