...

/

Upgrading the Cluster

Upgrading the Cluster

Learn how to upgrade the value of the cluster we created earlier.

Current Kubernetes version

Changing any aspect of the resources we’ve created is easy and straightforward. All we have to do is modify Terraform definitions and apply the changes. We can add resources, remove them, or change them in any way we want. To illustrate that, we’ll upgrade the Kubernetes version. But, before we do that, let’s see which version we’re running right now.

Press + to interact
kubectl version --output yaml

The output, limited to the relevant parts, is as follows.

Press + to interact
serverVersion:
gitVersion: v1.24.6

We are currently running Kubernetes version v1.24.6.

Note: Depending on what version you have installed, ...