Cluster API Upgrade
This is adapted from: https://cluster-api.sigs.k8s.io/tasks/upgrading-clusters.html
For more complex upgrades, additional context or further considerations the upstream documentation is recommended.
Version Upgrades
Itโs recommended to regularly upgrade your clusters. This avoids trying to maintain tooling version compatibility against major Kubernetes versions.
OS Patches
The operating system and associated packages can be updated independently, e.g. to apply security patches to the host OS.
The Ubuntu image is stripped so the packages (and number of vulnerabilities) is significantly lower. The Cloud team will make it clear when a CVE applies to the CAPI Ubuntu images.
Skip to Cluster API Upgrade | Without minor version upgrade .
Containers are controlled by Kubernetes. If a container (e.g. gpu-operator
) has a known CVE this will require you to upgrade your deployment (e.g. via helm
or your config management tool).
Multiple Version Upgrades
If you are upgrading multiple major Kubernetes versions you can only upgrade major step at a time. Additionally you need to check support against clusterctl here: Version Support - The Cluster API Book
To upgrade major versions you will need to follow the Cluster API Upgrade | Upgrade Clusterctl and CAPI components section first then Cluster API Upgrade | Kubernetes Image and Version Upgrades for each hop.
Overview
This process assumes the administrator is doing a full upgrade of all components. These can be upgraded independently with the caveat that the Infrastructure layer supports the version of Kubernetes planned: Version Support - The Cluster API Book
Infrastructure
Components which interact with OpenStack infrastructure
OpenStackCluster and Addons charts
These provide details for our OpenStack cloud components (i.e. allow Cluster API + Cluster API Openstack to create VMs) and fulfill the โcontractโ requirements from the cluster CRD
Clusterctl and
cluster.x-k8s.io
These represent the generic CAPI components and expect an infrastructure provider (e.g. OpenStack) to a contract to โadaptโ to each cloud provider
Kubernetes
Kubernetes components excluding those which handle OpenStack components. These are generic and all CAPI documentation online applies
Kubernetes Version
This is set by the
cluster
KRD and can be found withkubectl describe kubeadmcontrolplane -A
Current value can be seen under
spec.Version
Can be set to a
n+1
minor versions from the current versionCan be set to any patch of the same minor version
Upper bound is set from the CAPI images you are running
CAPI Image
These are pre-generated Ubuntu images with
kubeadm
,containerd
, โฆetc. packages pre-installedGenerated by the Cloud Team to ensure that they come meet the combined UKRI and STFC Cloud security policies - see Terms Of Service
OS and package patches can be upgraded independently of Kubernetes version
I.e. a K8s cluster set to
v5.10.2
with a CAPI image runningv5.10.6
is allowedHowever a K8s cluster set to
v5.10.8
on a CAPI image runningv5.10.6
is not
Infrastructure Upgrades
Upgrading OpenStackCluster Charts
This is required to bring any annotations required by the latest cluster.x-k8s.io/vxyz
CRD which will be upgraded by clusterctl
in the subsequent step
Update the helm Cluster API charts:
helm repo update capi
helm repo update capi-addons
helm upgrade cluster-api-addon-provider capi-addons/cluster-api-addon-provider -n clusters --wait
cd <folder_with_values>
Ensure the latest helm chart works without upgrading the K8s Major version:
helm upgrade <cluster_name> capi/openstack-cluster -f values.yaml -f clouds.yaml -f user-values.yaml -f flavors.yaml -n clusters
Update
user-values.yaml
by eithergit pull
the latest image from the cloud team, or manually editing themachineImage
andkubernetesVersion
fieldsRe-run the helm upgrade to upgrade the cluster version:
helm upgrade <cluster_name> capi/openstack-cluster --install -f values.yaml -f clouds.yaml -f user-values.yaml -f flavors.yaml -n clusters
Monitor the upgrade using
clusterctl describe cluster <cluster_name> -n clusters
Upgrade Clusterctl and CAPI components
Download the latest version which supports your cluster version.
In the case of multiple upgrades, download the latest clusterctl which supports your current Kubernetes cluster version including the management plane.
Copy the latest release (with support for your cluster) URL from: Releases ยท kubernetes-sigs/cluster-api . This should be the
linux-amd64
packagecurl -L https://github.com/kubernetes-sigs/cluster-api/releases/download/<version>/clusterctl-linux-amd64 -o clusterctl
Plan the upgrade for the management cluster. These components handle the upgrades for the clusters it manages:
Validate that the upgrade is valid and apply the command provided by clusterctl
Kubernetes Image and Version Upgrades
Youโll need to upgrade VM images and Kubernetes version to the latest patch version available before doing any major upgrades:
I.e. if youโre on 1.100.12 upgrade to the latest 1.100.x, this ensures any bug-fixes are applied which could prevent later upgrades.
ย
For major and minor upgrades:
Lookup the latest image build for Kubernetes, this can be found in images section of the web interface
Edit the
kubernetesVersion
inuser-values.yaml
to match the image nameEdit the
machineImage
inuser-values.yaml
to use the latest patch release
Wait for the rollout of new infra to complete
The rollout can be monitored with
kubectl get kcp -A
andkubectl get md -A
Machine details can be found in
kubectl get machines -A
andkubectl get openstackmachines -A
Repeat for each major upgrade step
You can only do a single major upgrade at a time, e.g.
1.100.12
to1.101.4
, then1.102.6
Troubleshooting
On the management cluster
Check the
machines
andopenstackmachines
CRDs match the VMs in the web interfacekubectl get machines -A
andkubectl get openstackmachines -A
Check the control plane nodeโs status
kubectl describe machine <name> -n clusters
Logs are available if nothing is happening / the process is stuck
OpenStack logs:
kubectl logs deploy/capo-controller-manager -n capo-system -f
CAPI logs:
kubectl logs deploy/capi-controller-manager -n capi-system -f
Check the control plane status:
kubectl describe kcp/<name>-control-plane -n clusters
Check for events on the management cluster:
kubectl get events -n clusters --watch
On the target cluster
Check you have access via kubectl
This could indicate an OpenStack networking configuration problem if you do not
Check the LBs and networks exist - if not check the CAPO logs on the management cluster
Check
etcd
is healthy withkubectl get pods -n kube-system
:If theyโre failing to start
kubectl describe pod/etcd-<name> -n kube-system
If theyโre running check theyโre healthy with
kubectl logs pod/etcd-<name> -n kube-system
In the event
etcd
is unhealthy contact the cloud team to assist with recovery
Check the
kubeapi
pod is starting per machineIf theyโre failing to start
kubectl describe pod/kubeapi-<name> -n kube-system
If theyโre running check theyโre healthy with
kubectl logs pod/kubeapi-<name> -n kube-system
In the event the Kubelet is failing to start or is unhealthy contact the cloud to assist with recovery