Skip to content

docs(k8s): new image system #5227

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions menu/navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1919,6 +1919,10 @@
"label": "Upgrade the Kubernetes version on a Kapsule cluster",
"slug": "upgrade-kubernetes-version"
},
{
"label": "Upgrade a Kapsule cluster to the new node image systemr",
"slug": "upgrade-kapsule-new-node-image-system"
},
{
"label": "Use the NVIDIA GPU operator on Kapsule and Kosmos with GPU Instances",
"slug": "use-nvidia-gpu-operator"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
meta:
title: How to upgrade a Kapsule cluster to the new node image system
description: Learn how to upgrade a Kapsule cluster to the new node image system.
h1: How to upgrade a Kapsule cluster to the new node image system
paragraph: Learn how to upgrade a Kapsule cluster to the new node image system.
tags: kubernetes kapsule node image
dates:
validation: 2025-07-03
posted: 2025-07-03
categories:
- containers
---


Scaleway is introducing a new image system for Kubernetes Kapsule clusters, bringing significant improvements, including reduced boot time, faster autoscaling, and an updated Ubuntu version.

The advantages of the new image system include improved boot time, reduced from over five minutes to under one minute, and faster autoscaling. The new images are based on Ubuntu 24.04 LTS, replacing the previous 22.04 LTS version.
Upgrades will also be faster, as nodes will be replaced instead of rebooted.


## Technical specifics of the upgrade Process

* **Node replacement**: During upgrade, nodes will be replaced with new ones, which may have implications for data stored locally on nodes (e.g., `hostPath`). Data stored in persistent volumes (PV) will not be affected.
* **New IP addresses**: The new replacement nodes will have new IP addresses (both public and private), which could impact IP filtering configurations.
* **GPU pool upgrade**: The upgrade of GPU pools may result in a partial downtime due to a limitation in the GPU operator, which cannot handle mixed Ubuntu versions (22.04 vs 24.04). The operator will install incorrect drivers on new nodes until the upgrade is complete, after which it will recover automatically.

## Upgrade methods

You can upgrade your Scaleway Kubernetes Kapsule cluster to the new image system using either the console or the CLI:

### Console upgrade

1. Navigate to **Kubernetes** under the **Containers** section of the [Scaleway console](https://console.scaleway.com/) side menu. The Kubernetes dashboard displays.
2. Click the Kapsule cluster name you want to manage. The cluster information page displays.
3. Click **Actions** in the top right corner of the cluster information page. A pop-up menu displays.
4. Click **Upgrade cluster nodes image**. A pop-up dispalys.
5. Confirm the upgrade by clicking **Upgrade cluster node image**

### CLI upgrade :
You can also upgrade the cluster to the new pool image system using the CLI.

Example command:
* Migrate all pools of a cluster to new images: `scw k8s cluster migrate-to-new-images cluster-id=11111111-1111-1111-1111-111111111111`
Loading