Operations
Backup And Restores
Custom Secret
tpl
A switchover is a planned operation that transfers the primary role from one MongoDB instance to another. Unlike failover which occurs during failures, switchover provides:
Switchover is ideal for:
Before proceeding, ensure the following:
kubectl create ns demo
namespace/demo created
KubeBlocks uses a declarative approach for managing MongoDB Replication Clusters. Below is an example configuration for deploying a MongoDB ReplicaSet Cluster with one primary replica and two secondary replicas.
Apply the following YAML configuration to deploy the cluster:
apiVersion: apps.kubeblocks.io/v1
kind: Cluster
metadata:
  name: mongo-cluster
  namespace: demo
spec:
  terminationPolicy: Delete
  clusterDef: mongodb
  topology: replicaset
  componentSpecs:
    - name: mongodb
      serviceVersion: "6.0.21"
      replicas: 3
      resources:
        limits:
          cpu: '0.5'
          memory: 0.5Gi
        requests:
          cpu: '0.5'
          memory: 0.5Gi
      volumeClaimTemplates:
        - name: data
          spec:
            storageClassName: ""
            accessModes:
              - ReadWriteOnce
            resources:
              requests:
                storage: 20Gi
Monitor the cluster status until it transitions to the Running state:
kubectl get cluster mongo-cluster -n demo -w
Expected Output:
kubectl get cluster mongo-cluster -n demo
NAME            CLUSTER-DEFINITION   TERMINATION-POLICY   STATUS     AGE
mongo-cluster   mongodb              Delete               Creating   49s
mongo-cluster   mongodb              Delete               Running    62s
Check the pod status and roles:
kubectl get pods -l app.kubernetes.io/instance=mongo-cluster -L  kubeblocks.io/role -n demo
Expected Output:
NAME                      READY   STATUS    RESTARTS   AGE   ROLE
mongo-cluster-mongodb-0   2/2     Running   0          78s   primary
mongo-cluster-mongodb-1   2/2     Running   0          63s   secondary
mongo-cluster-mongodb-2   2/2     Running   0          48s   secondary
Once the cluster status becomes Running, your MongoDB cluster is ready for use.
If you are creating the cluster for the very first time, it may take some time to pull images before running.
List the Pods and their roles (primary or secondary):
kubectl get pods -n demo -l app.kubernetes.io/instance=mongo-cluster,apps.kubeblocks.io/component-name=mongodb -L kubeblocks.io/role
Example Output:
NAME                      READY   STATUS    RESTARTS   AGE   ROLE
mongo-cluster-mongodb-0   2/2     Running   0          20m   primary
mongo-cluster-mongodb-1   2/2     Running   0          21m   secondary
mongo-cluster-mongodb-2   2/2     Running   0          19m   secondary
To initiate a planned switchover, create an OpsRequest resource as shown below:
Option 1: Automatic Switchover (No preferred candidate)
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
  name: mongodb-switchover-ops
  namespace: demo
spec:
  clusterName: mongo-cluster
  type: Switchover
  switchover:
  - componentName: mongodb
    instanceName: mongo-cluster-mongodb-0
Key Parameters:
instanceName: Specifies the instance (Pod) that is primary or leader before a switchover operation.Option 2: Targeted Switchover (Specific candidate)
apiVersion: operations.kubeblocks.io/v1alpha1
kind: OpsRequest
metadata:
  name: mongodb-switchover-targeted
  namespace: demo
spec:
  clusterName: mongo-cluster
  type: Switchover
  switchover:
  - componentName: mongodb
    # Specifies the instance whose role will be transferred.
    # A typical usage is to transfer the leader role in a consensus system.
    instanceName: mongo-cluster-mongodb-0
    # If CandidateName is specified, the role will be transferred to this instance.
    # The name must match one of the pods in the component.
    # Refer to ComponentDefinition's Swtichover lifecycle action for more details.
    candidateName: mongo-cluster-mongodb-1
Key Parameters:
instanceName: Specifies the instance (Pod) that is primary or leader before a switchover operation.candidateName: If candidate name is specified, the role will be transferred to this instance.Monitor the switchover progress:
kubectl get ops mongodb-switchover-ops -n demo -w
Expected Result:
NAME                     TYPE         CLUSTER         STATUS    PROGRESS   AGE
mongodb-switchover-ops   Switchover   mongo-cluster   Succeed   1/1        33s
After the switchover is executed, the specified instance will be promoted to the primary role, while the previously primary instance will take on the secondary role.
kubectl get pods -n demo -l app.kubernetes.io/instance=mongo-cluster -L kubeblocks.io/role
Expected Output:
NAME                      READY   STATUS    RESTARTS   AGE   ROLE
mongo-cluster-mongodb-0   2/2     Running   0          23m   secondary
mongo-cluster-mongodb-1   2/2     Running   0          24m   primary
mongo-cluster-mongodb-2   2/2     Running   0          23m   secondary
In this example:
If the switchover operation gets stuck, check these resources:
# Check agent logs on both current primary and candidate
kubectl logs -n demo <primary-pod> -c kbagent
kubectl logs -n demo <candidate-pod> -c kbagent
# Check cluster events for errors
kubectl get events -n demo --field-selector involvedObject.name=mongo-cluster
# Check kubeblocks logs
kubectl -n kb-system logs deploy/kubeblocks
This guide demonstrated how to:
Key takeaways: