Operating System Upgrades within a Kubernetes Cluster

  See which pods are running on which nodes:

kubectl get pods -o wide

Evict the pods on a node:

kubectl drain [node_name] --ignore-daemonsets

Watch as the node changes status:

kubectl get nodes -w

Schedule pods to the node after maintenance is complete:

kubectl uncordon [node_name]

Comments

Popular posts from this blog

Terraform

Scrum Master Interview help - Bootcamp

Kubernetes