Kubernetes: drain node vs cordon node

Yang Lyu
2 min readDec 19, 2021

--

1. Drain node

This will mark the node as unschedulable and also evict pods on the node.

The given node will be marked unschedulable to prevent new pods from arriving. 'drain' evicts the pods. Otherwise, it will use normal DELETE to delete the pods. The 'drain' evicts or deletes all pods except mirror pods (which cannot be deleted through the API server).  If there are DaemonSet-managed pods, drain will not proceed without --ignore-daemonsets, and regardless it will not delete any DaemonSet-managed pods, because those pods would be immediately replaced by the DaemonSet controller, which ignores unschedulable markings.  If there are any pods that are neither mirror pods nor managed by ReplicationController, ReplicaSet, DaemonSet, StatefulSet or Job, then drain will not delete any pods unless you use --force.  
--force will also allow deletion to proceed if the managing resource of one or more pods is missing.
'drain' waits for graceful termination. You should not operate on the machine until the command completes.When you are ready to put the node back into service, use kubectl uncordon, which will make the node schedulable again.Examples:
# Drain node "foo", even if there are pods not managed by a
ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.
$ kubectl drain foo --force

# As above, but abort if there are pods not managed by a
ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a grace period of 15 minutes.
$ kubectl drain foo --grace-period=900
Options:
--delete-emptydir-data=false: Continue even if there are pods using emptyDir(local data that will be deleted when the node is drained).
--ignore-daemonsets

2. cordon node

Mark node as unschedulable.

Examples:
# Mark node “foo” as unschedulable.
kubectl cordon foo

3. uncordon node

Mark node as schedulable again.

--

--