CephBlockPoolRados Namespace CRD
This guide assumes you have created a Rook cluster as explained in the main Quickstart guide
RADOS currently uses pools both for data distribution (pools are shared into PGs, which map to OSDs) and as the granularity for security (capabilities can restrict access by pool). Overloading pools for both purposes makes it hard to do multi-tenancy because it is not a good idea to have a very large number of pools.
A namespace would be a division of a pool into separate logical namespaces. For more information about BlockPool and namespace refer to the Ceph docs
Having multiple namespaces in a pool would allow multiple Kubernetes clusters to share one unique ceph cluster without creating a pool per kubernetes cluster and it will also allow to have tenant isolation between multiple tenants in a single Kubernetes cluster without creating multiple pools for tenants.
Rook allows creation of Ceph BlockPool RadosNamespaces through the custom resource definitions (CRDs).
Example¶
To get you started, here is a simple example of a CR to create a CephBlockPoolRadosNamespace on the CephBlockPool "replicapool".
Settings¶
If any setting is unspecified, a suitable default will be used automatically.
Metadata¶
name
: The name that will be used for the Ceph BlockPool rados namespace.
Spec¶
-
blockPoolName
: The metadata name of the CephBlockPool CR where the rados namespace will be created. -
mirroring
: Sets up mirroring of the rados namespace (requires Ceph v20 or newer)mode
: mirroring mode to run, possible values are "pool" or "image" (required). Refer to the mirroring modes Ceph documentation for more detailsremoteNamespace
: Name of the rados namespace on the peer cluster where the namespace should get mirrored. The default is the same rados namespace.snapshotSchedules
: schedule(s) snapshot at the rados namespace level. It is an array and one or more schedules are supported.interval
: frequency of the snapshots. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively.startTime
: optional, determines at what time the snapshot process starts, specified using the ISO 8601 time format.
Note
If mirroring is enabled, whether to monitor the status and the interval of status updates is based on the statusCheck
spec values of the parent CephBlockPool CR.
Creating a Storage Class¶
Once the RADOS namespace is created, an RBD-based StorageClass can be created to create PVs in this RADOS namespace. For this purpose, the clusterID
value from the CephBlockPoolRadosNamespace status needs to be put into the clusterID
field of the StorageClass spec.
Extract the clusterID from the CephBlockPoolRadosNamespace CR:
In this example, replace namespace-a
by the actual name of the radosnamespace created before. Now set the clusterID
retrieved from the previous step into the clusterID
of the storage class.
Example:
Mirroring¶
First, enable mirroring for the parent CephBlockPool.
Second, configure the rados namespace CRD with the mirroring: