This document describes how to migrate a Ceph Monitor daemon from one node to
another without changing the general number of Ceph Monitors in the cluster.
In the Ceph Controller concept, migration of a Ceph Monitor means manually
removing it from one node and adding it to another.
Consider the following exemplary placement scheme of Ceph Monitors in the
nodes spec of the KaaSCephCluster CR:
nodes:node-1:roles:-mon-mgrnode-2:roles:-mgr
Using the example above, if you want to move the Ceph Monitor from node-1
to node-2 without changing the number of Ceph Monitors, the roles table
of the nodes spec must result as follows:
nodes:node-1:roles:-mgrnode-2:roles:-mgr-mon
However, due to the Rook limitation related to Kubernetes architecture, once
you move the Ceph Monitor through the KaaSCephCluster CR, changes will not
apply automatically. This is caused by the following Rook behavior:
Rook creates Ceph Monitor resources as deployments with nodeSelector,
which binds Ceph Monitor pods to a requested node.
Rook does not recreate new Ceph Monitors with the new node placement if the
current mon quorum works.
Therefore, to move a Ceph Monitor to another node, you must also manually apply
the new Ceph Monitors placement to the Ceph cluster as described below.
Substitute <managedClusterProjectName> with the corresponding value.
In the nodes spec of the KaaSCephCluster CR, change the mon
roles placement without changing the total number of mon roles. For
details, see the example above. Note the nodes on which the mon roles
have been removed.
Wait until the corresponding MiraCeph resource is updated with the new
nodes spec:
Substitute <kubeconfig> with the Container Cloud cluster kubeconfig
that hosts the required Ceph cluster.
In the MiraCeph resource, determine which node has been changed in the
nodes spec. Save the name value of the node where the mon role
has been removed for further usage.
Once done, Rook removes the obsolete Ceph Monitor from the node and creates
a new one on the specified node with a new letter. For example, if the a,
b, and c Ceph Monitors were in quorum and mon-c was obsolete, Rook
removes mon-c and creates mon-d. In this case, the new quorum includes
the a, b, and d Ceph Monitors.