Skip to main content
Version: 3.1

Evacuating a Portworx node for OCP IBM Cloud

Sometimes it is necessary to evacuate a node of both workloads and storage. You may want to do this before an upgrade or other maintenance, or you might be trying to rebalance your workloads across the cluster. Note that if you are decommisioning a node, then the steps to do this should be followed here. Also note that upgrades can be done with minimal downtime as documented, so this process not a prerequisite.

  • Disable OpenShift cluster provisioning - cordon the node to prevent any further pods from being scheduled
oc cordon <oldNode>
  • Obtain a list of volumes on the node
pxctl volume list --node-id <oldNodeID>
  • For each volume, reduce the number of replicas (in this example, from 3 to 2) - since there can be at most 3 replicas of a Portworx volume, the replication factor has to be reduced befored it can be increased
pxctl volume ha-update --repl 2 <volume> --node <oldNodeID>
  • For each volume, recreate the replicas elsewhere - increase the replication factor and specify the node on which to place it
pxctl volume ha-update --repl 3 <volume> --node <newNodeID>
  • Delete the pods - OpenShift cluster will ensure the pods are reprovisioned on another node, and Stork will try to ensure they land on the node with the new replicas
oc get pods -o wide | grep <node>
oc delete pod <pod>

Was this page helpful?