Cluster Upgrade
Understand how to upgrade cluster in Kubernetes.
Introduction of Cluster Upgrade
So, we know that the Kubernetes components can have their own versions, for example;
- kube-apiserver: v1.32.0
- kube-scheduler: v1.32.0
- kubelet: v1.32.0
- kube-proxy: v1.32.0
- controller-manager: v1.32.0
- etcd: v3.5.17
- coredns: v1.12.0
Remember, it is not mandatory to have the same version for all the components. But, it is recommended to have the same version for all the components, except for the etcd and coredns. There is one thing to remember, kube-apiserver is the primary component, so assume that the kube-apiserver is v1.32.0
, then the other components like kube-scheduler, kubelet, kube-proxy, controller-manager should be less than or equal to v1.32.0, so that there is no compatibility issue.
If you used kubeadm
tool to deploy your cluster, then the kubeadm
tool itself can help you to plan and upgrade the cluster.
Process of Cluster Upgrade
Here is the scenario, we have a Kubernetes cluster with a master and 2 workers nodes are running. The current version of the cluster is v1.21.0
. Now, we want to upgrade the cluster to v1.22.0
.
Step 1: Upgrade the Master node
When the master node is being upgraded, the control plane components like kube-apiserver
, kube-scheduler
, and kube-controller-manager
will go down, but your current worker nodes will continue to work without any issue. Just we cannot deploy, modify, and delete the existing resources as the control plane components are down.
Step 2: Upgrade the Worker nodes
There are different ways to upgrade the worker nodes;
- Upgrade all of them at once, but all the pods will be down. (Downtime)
- Upgrade one by one, but the pods will be rescheduled to the other worker nodes. (No Downtime)
- Add new worker nodes with the new version, this is very useful if you're on a cloud provider. (No Downtime)
- Add the new worker node
- Move the pods (workload) from the old worker node to the new worker node
- Remove the old worker node
For the demo, we will upgrade one worker node at once. Repeat these steps for all the worker nodes.