Question About Kubernetes Version Upgrade in Apache CloudStack #10635
-
Hello! I hope you're doing well! I'm trying to understand how the Kubernetes version upgrade process works when running on Apache CloudStack. My question is more about what happens "under the hood": Does the upgrade take place at the hypervisor level? Does it involve changes to the operating system of the VMs? How is compatibility between Kubernetes versions and the underlying infrastructure managed in this context? If you could share some insights or point me to relevant documentation, I would greatly appreciate it! Thank you in advance for your time. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi,
|
Beta Was this translation helpful? Give feedback.
-
Hi, Thank you, This upgrade is only between MINOR versions or can i upgrade MAJOR versions too? Best Regards, |
Beta Was this translation helpful? Give feedback.
Hi,
Kubernetes upgrade just upgrades the k8s version. Just to give a high level overview of the steps:
a. mounts the attached iso on the the respective node
b. imports the images (docker) required for the new k8s version
c. runs the kubeadm upgrade command based on the node type
d. copies the latest binaries - kubectl, kubelet from the ISO and restarts the services
e. On the control node, applies the latest net…