Problem Statement
Which command would you use to safely remove a node from scheduling pods in Kubernetes before performing maintenance?
Explanation
The `kubectl cordon` command marks a node unschedulable so no new pods are placed on it. After cordon you typically run `kubectl drain` to evict existing pods safely before maintenance.
