Upgrading
Key Concepts
- Nova Control Plane: The central management unit running on a hosting Kubernetes cluster.
- Nova Agent: The component deployed to each workload cluster for management.
- Workload Cluster: A Kubernetes cluster managed by the Nova Control Plane.
- Hosting Cluster: A Kubernetes cluster where the Nova Control Plane runs.
Upgrade Control plane components
- Download the tarball for the latest version and unpack it.
- Make sure there is
nova/install/directory there. - To upgrade your control plane components, apply the associated manifests to your hosting cluster:
kubectl --context=${K8S_HOSTING_CLUSTER_CONTEXT} apply -k nova/install/base/control-plane/
- To upgrade the Nova CRDs, apply the
nova_crds.yamlmanifest to the Nova Control Plane cluster:
kubectl --context=${NOVA_CONTROLPLANE_CONTEXT} apply -f nova/install/base/crds/nova_crds.yaml --server-side
- Wait until control plane pods are up and running.