This page explains how to upgrade a highly available (HA) Kubernetes cluster created with kubeadm from version 1.12.x to version 1.13.y. In addition to upgrading, you must also follow the instructions in Creating HA clusters with kubeadm.
Before proceeding:
kubeadm HA cluster running version 1.12 or higher.kubeadm upgrade does not touch your workloads, only components internal to Kubernetes, but backups are always a best practice.Note: All commands on any control plane or etcd node should be run as root.
Upgrade kubeadm to the version that matches the version of Kubernetes that you are upgrading to:
apt-mark unhold kubeadm && \
apt-get update && apt-get upgrade -y kubeadm && \
apt-mark hold kubeadmCheck prerequisites and determine the upgrade versions:
kubeadm upgrade planYou should see something like the following:
Upgrade to the latest version in the v1.13 series:
COMPONENT CURRENT AVAILABLE
API Server v1.12.2 v1.13.0
Controller Manager v1.12.2 v1.13.0
Scheduler v1.12.2 v1.13.0
Kube Proxy v1.12.2 v1.13.0
CoreDNS 1.2.2 1.2.6
Modify configmap/kubeadm-config for this control plane node:
kubectl edit configmap -n kube-system kubeadm-configMake the following modifications to the ClusterConfiguration key:
etcd
Remove the etcd section completely
Make the following modifications to the ClusterStatus key:
apiEndpoints
Add an entry for each of the additional control plane hosts
Start the upgrade:
kubeadm upgrade apply v<YOUR-CHOSEN-VERSION-HERE>You should see something like the following:
[upgrade/successful] SUCCESS! Your cluster was upgraded to "v1.13.0". Enjoy!
The kubeadm-config ConfigMap is now updated from v1alpha3 version to v1beta1.
Start the upgrade:
kubeadm upgrade node experimental-control-planeRun the upgrade:
kubeadm upgrade apply v1.13.0
For other control plane nodes in the cluster, run the following command:
kubeadm upgrade node experimental-control-plane
Your Container Network Interface (CNI) provider might have its own upgrade instructions to follow. Check the addons page to find your CNI provider and see whether you need to take additional upgrade steps.
Upgrade the kubelet and kubectl by running the following on each node:
# use your distro's package manager, e.g. 'apt-get' on Debian-based systems
# for the versions stick to kubeadm's output (see above)
apt-mark unhold kubelet kubectl && \
apt-get update && \
apt-get install kubelet=<NEW-K8S-VERSION> kubectl=<NEW-K8S-VERSION> && \
apt-mark hold kubelet kubectl && \
systemctl restart kubeletIn this example a deb-based system is assumed and apt-get is used for installing the upgraded software. On rpm-based systems the command is yum install <PACKAGE>=<NEW-K8S-VERSION> for all packages.
Verify that the new version of the kubelet is running:
systemctl status kubeletVerify that the upgraded node is available again by running the following command from wherever you run kubectl:
kubectl get nodesIf the STATUS column shows Ready for the upgraded host, you can continue. You might need to repeat the command until the node shows Ready.
If the upgrade fails, see whether one of the following scenarios applies:
kubeadm upgrade apply failed to upgrade the cluster, it will try to perform a rollback. If this is the case on the first master, the cluster is probably still intact.You can run kubeadm upgrade apply again, because it is idempotent and should eventually make sure the actual state is the desired state you are declaring. You can run kubeadm upgrade apply to change a running cluster with x.x.x --> x.x.x with --force to recover from a bad state.
kubeadm upgrade apply on one of the secondary masters failed, the cluster is upgraded and working, but the secondary masters are in an undefined state. You need to investigate further and join the secondaries manually.Was this page helpful?
Thanks for the feedback. If you have a specific, answerable question about how to use Kubernetes, ask it on Stack Overflow. Open an issue in the GitHub repo if you want to report a problem or suggest an improvement.