Skip to main content
Version: 2.8

Upgrade your cluster

Constellation provides an easy way to upgrade all components of your cluster, without disrupting it's availability. Specifically, you can upgrade the Kubernetes version, the nodes' image, and the Constellation microservices. You configure the desired versions in your local Constellation configuration and trigger upgrades with the upgrade apply command. To learn about available versions you use the upgrade check command. Which versions are available depends on the CLI version you are using.

caution

Upgrades for AWS clusters created prior to v2.8 require additional IAM permissions before applying the upgrade. Ensure the existing IAM profiles have all newly required AWS IAM permissions for v2.8 or destroy your existing cluster, remove the existing IAM profiles and recreate the IAM configuration with the new permissions.

Update the CLI

Each CLI comes with a set of supported microservice and Kubernetes versions. Most importantly, a given CLI version can only upgrade a cluster of the previous minor version, but not older ones. This means that you have to upgrade your CLI and cluster one minor version at a time.

For example, if you are currently on CLI version v2.6 and the latest version is v2.8, you should

  • upgrade the CLI to v2.7,
  • upgrade the cluster to v2.7,
  • and only then continue upgrading the CLI (and the cluster) to v2.8 after.

Also note that if your current Kubernetes version isn't supported by the next CLI version, use your current CLI to upgrade to a newer Kubernetes version first.

To learn which Kubernetes versions are supported by a particular CLI, run constellation config kubernetes-versions.

Migrate the configuration

The Constellation configuration file is located in the file constellation-conf.yaml in your workspace. Refer to the migration reference to check if you need to update fields in your configuration file. Use constellation config migrate to automatically update an old config file to a new format.

Check for upgrades

To learn which versions the current CLI can upgrade to and what's installed in your cluster, run:

# Show possible upgrades
constellation upgrade check

# Show possible upgrades and write them to config file
constellation upgrade check --write-config

You can either enter the reported target versions into your config manually or run the above command with the --write-config flag. When using this flag, the kubernetesVersion, image, microserviceVersion, and attestation fields are overwritten with the smallest available upgrade.

Apply the upgrade

Once you updated your config with the desired versions, you can trigger the upgrade with this command:

constellation upgrade apply

Microservice upgrades will be finished within a few minutes, depending on the cluster size. If you are interested, you can monitor pods restarting in the kube-system namespace with your tool of choice.

Image and Kubernetes upgrades take longer. For each node in your cluster, a new node has to be created and joined. The process usually takes up to ten minutes per node.

Check the status

Upgrades are asynchronous operations. After you run upgrade apply, it will take a while until the upgrade has completed. To understand if an upgrade is finished, you can run:

constellation status

This command displays the following information:

  • The installed services and their versions
  • The image and Kubernetes version the cluster is expecting on each node
  • How many nodes are up to date

Here's an example output:

Target versions:
Image: v2.6.0
Kubernetes: v1.25.8
Installed service versions:
Cilium: v1.12.1
cert-manager: v1.10.0
constellation-operators: v2.6.0
constellation-services: v2.6.0
Cluster status: Some node versions are out of date
Image: 23/25
Kubernetes: 25/25

This output indicates that the cluster is running Kubernetes version 1.25.8, and all nodes have the appropriate binaries installed. 23 out of 25 nodes have already upgraded to the targeted image version of 2.6.0, while two are still in progress.

Apply further upgrades

After the upgrade is finished, you can run constellation upgrade check again to see if there are more upgrades available. If so, repeat the process.