Documentation for scw k8s

April 7, 2026 ยท View on GitHub

This API allows you to manage Kubernetes Kapsule and Kosmos clusters.

Access Control List (ACL) management commands

Network Access Control Lists (ACLs) allow you to manage inbound network traffic by setting up ACL rules.

Add new ACLs

Add new ACL rules for a specific cluster.

Usage:

scw k8s acl add [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster whose ACLs will be added
acls.{index}.ipIP subnet to allow
acls.{index}.scaleway-rangesAllow access to cluster from all Scaleway ranges as defined in https://www.scaleway.com/en/docs/console/account/reference-content/scaleway-network-information/#ip-ranges-used-by-scaleway.
acls.{index}.descriptionDescription of the ACL
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Delete an existing ACL

Delete an existing ACL.

Usage:

scw k8s acl delete [arg=value ...]

Args:

NameDescription
acl-idRequiredID of the ACL rule to delete
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

List ACLs

List ACLs for a specific cluster.

Usage:

scw k8s acl list [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster whose ACLs will be listed
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw, all
Region to target. If none is passed will use default region from the config

Set new ACLs

Set new ACL rules for a specific cluster.

Usage:

scw k8s acl set [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster whose ACLs will be set
acls.{index}.ipIP subnet to allow
acls.{index}.scaleway-rangesAllow access to cluster from all Scaleway ranges as defined in https://www.scaleway.com/en/docs/console/account/reference-content/scaleway-network-information/#ip-ranges-used-by-scaleway.
acls.{index}.descriptionDescription of the ACL
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Kapsule cluster management commands

A cluster is a fully managed Kubernetes cluster It is composed of different pools, each pool containing the same kind of nodes.

Create a new Cluster

Create a new Kubernetes cluster in a Scaleway region.

Usage:

scw k8s cluster create [arg=value ...]

Args:

NameDescription
project-idProject ID to use. If none is passed the default project ID will be used
typeType of the cluster. See list available cluster types for a list of valid types
nameRequired
Default: <generated>
Cluster name
descriptionCluster description
tags.{index}Tags associated with the cluster
versionRequired
Default: latest
Kubernetes version of the cluster
cniRequired
Default: cilium
One of: unknown_cni, cilium, calico, weave, flannel, kilo, none, cilium_native
Container Network Interface (CNI) plugin running in the cluster
pools.{index}.nameName of the pool
pools.{index}.node-typeNode type is the type of Scaleway Instance wanted for the pool. Nodes with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). 'external' is a special node type used to provision instances from other cloud providers in a Kosmos Cluster
pools.{index}.placement-group-idPlacement group ID in which all the nodes of the pool will be created, placement groups are limited to 20 instances.
pools.{index}.autoscalingDefines whether the autoscaling feature is enabled for the pool
pools.{index}.sizeSize (number of nodes) of the pool
pools.{index}.min-sizeDefines the minimum size of the pool. Note that this field is only used when autoscaling is enabled on the pool
pools.{index}.max-sizeDefines the maximum size of the pool. Note that this field is only used when autoscaling is enabled on the pool
pools.{index}.container-runtimeOne of: unknown_runtime, docker, containerd, crioCustomization of the container runtime is available for each pool
pools.{index}.autohealingDefines whether the autohealing feature is enabled for the pool
pools.{index}.tags.{index}Tags associated with the pool, see managing tags
pools.{index}.kubelet-args.{key}Kubelet arguments to be used by this pool. Note that this feature is experimental
pools.{index}.upgrade-policy.max-unavailableThe maximum number of nodes that can be not ready at the same time
pools.{index}.upgrade-policy.max-surgeThe maximum number of nodes to be created during the upgrade
pools.{index}.zoneZone in which the pool's nodes will be spawned
pools.{index}.root-volume-typeOne of: default_volume_type, l_ssd, b_ssd, sbs_5k, sbs_15kDefines the system volume disk type. Several types of volume (volume_type) are provided:
pools.{index}.root-volume-sizeSystem volume disk size
pools.{index}.public-ip-disabledDefines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway
pools.{index}.security-group-idSecurity group ID in which all the nodes of the pool will be created. If unset, the pool will use default Kapsule security group in current zone
pools.{index}.labels.{key}Kubernetes labels applied and reconciled on the nodes
pools.{index}.taints.{index}.keyThe taint key to be applied to a node
pools.{index}.taints.{index}.valueThe taint value corresponding to the taint key
pools.{index}.taints.{index}.effectOne of: NoSchedule, PreferNoSchedule, NoExecuteEffect defines the effects of Taint
pools.{index}.startup-taints.{index}.keyThe taint key to be applied to a node
pools.{index}.startup-taints.{index}.valueThe taint value corresponding to the taint key
pools.{index}.startup-taints.{index}.effectOne of: NoSchedule, PreferNoSchedule, NoExecuteEffect defines the effects of Taint
autoscaler-config.scale-down-disabledForbid cluster autoscaler to scale down the cluster, defaults to false
autoscaler-config.scale-down-delay-after-addHow long after scale up the scale down evaluation resumes
autoscaler-config.estimatorOne of: unknown_estimator, binpackingType of resource estimator to be used in scale up
autoscaler-config.expanderOne of: unknown_expander, random, most_pods, least_waste, priority, priceKubernetes autoscaler strategy to fit pods into nodes, see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders for details
autoscaler-config.ignore-daemonsets-utilizationIgnore DaemonSet pods when calculating resource utilization for scaling down, defaults to false
autoscaler-config.balance-similar-node-groupsDetect similar node groups and balance the number of nodes between them, defaults to false
autoscaler-config.expendable-pods-priority-cutoffPods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they won't cause scale up. Pods with null priority (PodPriority disabled) are non expendable
autoscaler-config.scale-down-unneeded-timeHow long a node should be unneeded before it is eligible for scale down, defaults to 10 minutes
autoscaler-config.scale-down-utilization-thresholdNode utilization level, defined as a sum of requested resources divided by allocatable capacity, below which a node can be considered for scale down
autoscaler-config.max-graceful-termination-secMaximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node, defaults to 600 (10 minutes)
autoscaler-config.skip-nodes-with-local-storageCluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath, defaults to true
autoscaler-config.log-levelCluster autoscaler logging level expressed from 0 to 4 (4 being the more verbose), defaults to 2. see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#how-can-i-increase-the-information-that-the-ca-is-logging for details
auto-upgrade.enableDefines whether auto upgrade is enabled for the cluster
auto-upgrade.maintenance-window.start-hourStart time of the two-hour maintenance window
auto-upgrade.maintenance-window.dayOne of: any, monday, tuesday, wednesday, thursday, friday, saturday, sundayDay of the week for the maintenance window
feature-gates.{index}List of feature gates to enable
admission-plugins.{index}List of admission plugins to enable
open-id-connect-config.issuer-urlURL of the provider which allows the API server to discover public signing keys. Only URLs using the https:// scheme are accepted. This is typically the provider's discovery URL without a path, for example "https://accounts.google.com" or "https://login.salesforce.com"
open-id-connect-config.client-idA client ID that all tokens must be issued for
open-id-connect-config.username-claimJWT claim to use as the user name. The default is sub, which is expected to be the end user's unique identifier. Admins can choose other claims, such as email or name, depending on their provider. However, claims other than email will be prefixed with the issuer URL to prevent name collision
open-id-connect-config.username-prefixPrefix prepended to username claims to prevent name collision (such as system: users). For example, the value oidc: will create usernames like oidc:jane.doe. If this flag is not provided and username_claim is a value other than email, the prefix defaults to ( Issuer URL )# where ( Issuer URL ) is the value of issuer_url. The value - can be used to disable all prefixing
open-id-connect-config.groups-claim.{index}JWT claim to use as the user's group
open-id-connect-config.groups-prefixPrefix prepended to group claims to prevent name collision (such as system: groups). For example, the value oidc: will create group names like oidc:engineering and oidc:infra
open-id-connect-config.required-claim.{index}Multiple key=value pairs describing a required claim in the ID token. If set, the claims are verified to be present in the ID token with a matching value
apiserver-cert-sans.{index}Additional Subject Alternative Names for the Kubernetes API server certificate
private-network-idPrivate network ID for internal cluster communication (cannot be changed later). For Kapsule clusters, if none is provided, a private network will be created
pod-cidrSubnet used for the Pod CIDR (cannot be changed later)
service-cidrSubnet used for the Service CIDR (cannot be changed later)
service-dns-ipIP used for the DNS Service (cannot be changes later). If unset, default to Service CIDR's network + 10
organization-idOrganization ID to use. If none is passed the default organization ID will be used
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Create a Kubernetes cluster named foo with cilium as CNI, in version 1.31.2 and with a pool named default composed of 3 DEV1-M

scw k8s cluster create name=foo version=1.31.2 pools.0.size=3 pools.0.node-type=DEV1-M pools.0.name=default

Create a Kubernetes cluster named bar, tagged, calico as CNI, in version 1.31.2 and with a tagged pool named default composed of 2 RENDER-S and autohealing and autoscaling enabled (between 1 and 10 nodes)

scw k8s cluster create name=bar version=1.31.2 tags.0=tag1 tags.1=tag2 cni=calico pools.0.size=2 pools.0.node-type=RENDER-S pools.0.min-size=1 pools.0.max-size=10 pools.0.autohealing=true pools.0.autoscaling=true pools.0.tags.0=pooltag1 pools.0.tags.1=pooltag2 pools.0.name=default

Delete a Cluster

Delete a specific Kubernetes cluster and all its associated pools and nodes, and possibly its associated Load Balancers or Block Volumes.

Usage:

scw k8s cluster delete <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster to delete
with-additional-resourcesDefines whether all volumes (including retain volume type), empty Private Networks and Load Balancers with a name starting with the cluster ID will also be deleted
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Delete a cluster without deleting its Block volumes and Load Balancers

scw k8s cluster delete 11111111-1111-1111-1111-111111111111

Delete a cluster with its Block volumes and Load Balancers (best effort)

scw k8s cluster delete 11111111-1111-1111-1111-111111111111 with-additional-resources=true

Get a Cluster

Retrieve information about a specific Kubernetes cluster.

Usage:

scw k8s cluster get <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the requested cluster
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Get a cluster information

scw k8s cluster get 11111111-1111-1111-1111-111111111111

List Clusters

List all existing Kubernetes clusters in a specific region.

Usage:

scw k8s cluster list [arg=value ...]

Args:

NameDescription
project-idProject ID on which to filter the returned clusters
order-byOne of: created_at_asc, created_at_desc, updated_at_asc, updated_at_desc, name_asc, name_desc, status_asc, status_desc, version_asc, version_descSort order of returned clusters
nameName to filter on, only clusters containing this substring in their name will be returned
statusOne of: unknown, creating, ready, deleting, deleted, updating, locked, pool_requiredStatus to filter on, only clusters with this status will be returned
typeType to filter on, only clusters with this type will be returned
private-network-idPrivate Network ID to filter on, only clusters within this Private Network will be returned
organization-idOrganization ID on which to filter the returned clusters
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw, all
Region to target. If none is passed will use default region from the config

Examples:

List all clusters on your default region

scw k8s cluster list

List the ready clusters on your default region

scw k8s cluster list status=ready

List the clusters that match the given name on fr-par ('cluster1' will return 'cluster100' and 'cluster1' but not 'foo')

scw k8s cluster list region=fr-par name=cluster1

List available cluster types for a cluster

List the cluster types that a specific Kubernetes cluster is allowed to switch to.

Usage:

scw k8s cluster list-available-types <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredCluster ID for which the available Kubernetes types will be listed
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

List all cluster types that a cluster can upgrade to

scw k8s cluster list-available-types 11111111-1111-1111-1111-111111111111

List available versions for a Cluster

List the versions that a specific Kubernetes cluster is allowed to upgrade to. Results will include every patch version greater than the current patch, as well as one minor version ahead of the current version. Any upgrade skipping a minor version will not work.

Usage:

scw k8s cluster list-available-versions <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredCluster ID for which the available Kubernetes versions will be listed
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

List all versions that a cluster can upgrade to

scw k8s cluster list-available-versions 11111111-1111-1111-1111-111111111111

Reset the admin token of a Cluster

Reset the admin token for a specific Kubernetes cluster. This will revoke the old admin token (which will not be usable afterwards) and create a new one. Note that you will need to download the kubeconfig again to keep interacting with the cluster.

Usage:

scw k8s cluster reset-admin-token <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredCluster ID on which the admin token will be renewed
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Reset the admin token for a cluster

scw k8s cluster reset-admin-token 11111111-1111-1111-1111-111111111111

Change the Cluster type

Change the type of a specific Kubernetes cluster. To see the possible values you can enter for the type field, list available cluster types.

Usage:

scw k8s cluster set-type <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster to migrate from one type to another
typeRequiredType of the cluster. Note that some migrations are not possible (please refer to product documentation)
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Convert a kapsule cluster to a kapsule-dedicated-16 cluster

scw k8s cluster set-type 11111111-1111-1111-1111-111111111111 type=kapsule-dedicated-16

Update a Cluster

Update information on a specific Kubernetes cluster. You can update details such as its name, description, tags and configuration. To upgrade a cluster, you will need to use the dedicated endpoint.

Usage:

scw k8s cluster update <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster to update
nameNew external name for the cluster
descriptionNew description for the cluster
tags.{index}New tags associated with the cluster
autoscaler-config.scale-down-disabledForbid cluster autoscaler to scale down the cluster, defaults to false
autoscaler-config.scale-down-delay-after-addHow long after scale up the scale down evaluation resumes
autoscaler-config.estimatorOne of: unknown_estimator, binpackingType of resource estimator to be used in scale up
autoscaler-config.expanderOne of: unknown_expander, random, most_pods, least_waste, priority, priceKubernetes autoscaler strategy to fit pods into nodes, see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-expanders for details
autoscaler-config.ignore-daemonsets-utilizationIgnore DaemonSet pods when calculating resource utilization for scaling down, defaults to false
autoscaler-config.balance-similar-node-groupsDetect similar node groups and balance the number of nodes between them, defaults to false
autoscaler-config.expendable-pods-priority-cutoffPods with priority below cutoff will be expendable. They can be killed without any consideration during scale down and they won't cause scale up. Pods with null priority (PodPriority disabled) are non expendable
autoscaler-config.scale-down-unneeded-timeHow long a node should be unneeded before it is eligible for scale down, defaults to 10 minutes
autoscaler-config.scale-down-utilization-thresholdNode utilization level, defined as a sum of requested resources divided by allocatable capacity, below which a node can be considered for scale down
autoscaler-config.max-graceful-termination-secMaximum number of seconds the cluster autoscaler waits for pod termination when trying to scale down a node, defaults to 600 (10 minutes)
autoscaler-config.skip-nodes-with-local-storageCluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath, defaults to true
autoscaler-config.log-levelCluster autoscaler logging level expressed from 0 to 4 (4 being the more verbose), defaults to 2. see https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#how-can-i-increase-the-information-that-the-ca-is-logging for details
auto-upgrade.enableDefines whether auto upgrade is enabled for the cluster
auto-upgrade.maintenance-window.start-hourStart time of the two-hour maintenance window
auto-upgrade.maintenance-window.dayOne of: any, monday, tuesday, wednesday, thursday, friday, saturday, sundayDay of the week for the maintenance window
feature-gates.{index}List of feature gates to enable
admission-plugins.{index}List of admission plugins to enable
open-id-connect-config.issuer-urlURL of the provider which allows the API server to discover public signing keys. Only URLs using the https:// scheme are accepted. This is typically the provider's discovery URL without a path, for example "https://accounts.google.com" or "https://login.salesforce.com"
open-id-connect-config.client-idA client ID that all tokens must be issued for
open-id-connect-config.username-claimJWT claim to use as the user name. The default is sub, which is expected to be the end user's unique identifier. Admins can choose other claims, such as email or name, depending on their provider. However, claims other than email will be prefixed with the issuer URL to prevent name collision
open-id-connect-config.username-prefixPrefix prepended to username claims to prevent name collision (such as system: users). For example, the value oidc: will create usernames like oidc:jane.doe. If this flag is not provided and username_claim is a value other than email, the prefix defaults to ( Issuer URL )# where ( Issuer URL ) is the value of issuer_url. The value - can be used to disable all prefixing
open-id-connect-config.groups-claim.{index}JWT claim to use as the user's group
open-id-connect-config.groups-prefixPrefix prepended to group claims to prevent name collision (such as system: groups). For example, the value oidc: will create group names like oidc:engineering and oidc:infra
open-id-connect-config.required-claim.{index}Multiple key=value pairs describing a required claim in the ID token. If set, the claims are verified to be present in the ID token with a matching value
apiserver-cert-sans.{index}Additional Subject Alternative Names for the Kubernetes API server certificate
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Add InPlacePodVerticalScaling and SidecarContainers as feature gates on a cluster

scw k8s cluster update 11111111-1111-1111-1111-111111111111 feature-gates.0=InPlacePodVerticalScaling feature-gates.1=SidecarContainers

Remove all custom feature gates on a cluster

scw k8s cluster update 11111111-1111-1111-1111-111111111111 feature-gates=none

Upgrade a Cluster

Upgrade a specific Kubernetes cluster and possibly its associated pools to a specific and supported Kubernetes version.

Usage:

scw k8s cluster upgrade <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster to upgrade
versionRequiredNew Kubernetes version of the cluster. Note that the version should either be a higher patch version of the same minor version or the direct minor version after the current one
upgrade-poolsDefines whether pools will also be upgraded once the control plane is upgraded
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Upgrade a cluster to version 1.31.2 of Kubernetes (pools are not included)

scw k8s cluster upgrade 11111111-1111-1111-1111-111111111111 version=1.31.2

Upgrade a cluster to version 1.31.2 of Kubernetes (pools are included)

scw k8s cluster upgrade 11111111-1111-1111-1111-111111111111 version=1.31.2 upgrade-pools=true

Wait for a cluster to reach a stable state

Wait for server to reach a stable state. This is similar to using --wait flag on other action commands, but without requiring a new action on the server.

Usage:

scw k8s cluster wait <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster.
wait-for-poolsWait for pools to be ready.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config
timeoutDefault: 10m0sTimeout of the wait

Examples:

Wait for a cluster to reach a stable state

scw k8s cluster wait 11111111-1111-1111-1111-111111111111

Cluster type management commands

All cluster types available in a specified region A cluster type represents the different commercial types of clusters offered by Scaleway.

List cluster types

List available cluster types and their technical details.

Usage:

scw k8s cluster-type list [arg=value ...]

Args:

NameDescription
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw, all
Region to target. If none is passed will use default region from the config

Manage your Kubernetes Kapsule cluster's kubeconfig files

Retrieve a kubeconfig

Retrieve the kubeconfig for a specified cluster.

Usage:

scw k8s kubeconfig get <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredCluster ID from which to retrieve the kubeconfig
auth-methodDefault: cli
One of: cli, copy-cli-token, legacy
Which method to use to authenticate using kubelet
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Examples:

Get the kubeconfig for a given cluster

scw k8s kubeconfig get 11111111-1111-1111-1111-111111111111

Get the kubeconfig for a given cluster by copying current secret_key to it

scw k8s kubeconfig get 11111111-1111-1111-1111-111111111111 auth-method=copy-cli-token

Get the kubeconfig for a given cluster and use legacy authentication

scw k8s kubeconfig get 11111111-1111-1111-1111-111111111111 auth-method=legacy

Install a kubeconfig

Retrieve the kubeconfig for a specified cluster and write it on disk. It will merge the new kubeconfig in the file pointed by the KUBECONFIG variable. If empty it will default to $HOME/.kube/config.

Usage:

scw k8s kubeconfig install <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredCluster ID from which to retrieve the kubeconfig
auth-methodDefault: cli
One of: cli, copy-cli-token, legacy
Which method to use to authenticate using kubelet
keep-current-contextWhether or not to keep the current kubeconfig context unmodified
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Examples:

Install the kubeconfig for a given cluster and using the new context

scw k8s kubeconfig install 11111111-1111-1111-1111-111111111111

Get the kubeconfig for a given cluster by copying current secret_key to it

scw k8s kubeconfig install 11111111-1111-1111-1111-111111111111 auth-method=copy-cli-token

Get the kubeconfig for a given cluster and use legacy authentication

scw k8s kubeconfig install 11111111-1111-1111-1111-111111111111 auth-method=legacy

Uninstall a kubeconfig

Remove specified cluster from kubeconfig file specified by the KUBECONFIG env, if empty it will default to $HOME/.kube/config. If the current context points to this cluster, it will be set to an empty context.

Usage:

scw k8s kubeconfig uninstall <cluster-id ...> [arg=value ...]

Args:

NameDescription
cluster-idRequiredCluster ID from which to uninstall the kubeconfig

Examples:

Uninstall the kubeconfig for a given cluster

scw k8s kubeconfig uninstall 11111111-1111-1111-1111-111111111111

Kapsule node management commands

A node (short for worker node) is an abstraction for a Scaleway Instance A node is always part of a pool. Each of them has the Kubernetes software automatically installed and configured by Scaleway.

Delete a Node in a Cluster

Delete a specific Node. The node will first be drained and pods will be rescheduled onto another node. Note that when there is not enough space to reschedule all the pods (such as in a one-node cluster, or with specific constraints), disruption of your applications may occur.

Usage:

scw k8s node delete <node-id ...> [arg=value ...]

Args:

NameDescription
node-idRequiredID of the node to replace
skip-drainSkip draining node from its workload (Note: this parameter is currently inactive)
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Delete a node

scw k8s node delete 11111111-1111-1111-1111-111111111111

Delete a node without evicting workloads

scw k8s node delete 11111111-1111-1111-1111-111111111111 skip-drain=true

Get a Node in a Cluster

Retrieve details about a specific Kubernetes Node.

Usage:

scw k8s node get <node-id ...> [arg=value ...]

Args:

NameDescription
node-idRequiredID of the requested node
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Get a node

scw k8s node get 11111111-1111-1111-1111-111111111111

List Nodes in a Cluster

List all the existing nodes for a specific Kubernetes cluster.

Usage:

scw k8s node list [arg=value ...]

Args:

NameDescription
cluster-idRequiredCluster ID from which the nodes will be listed from
pool-idPool ID on which to filter the returned nodes
order-byOne of: created_at_asc, created_at_desc, updated_at_asc, updated_at_desc, name_asc, name_desc, status_asc, status_desc, version_asc, version_descSort order of the returned nodes
nameName to filter on, only nodes containing this substring in their name will be returned
statusOne of: unknown, creating, not_ready, ready, deleting, deleted, locked, rebooting, creation_error, upgrading, starting, registeringStatus to filter on, only nodes with this status will be returned
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw, all
Region to target. If none is passed will use default region from the config

Examples:

List all the nodes in the cluster

scw k8s node list cluster-id=11111111-1111-1111-1111-111111111111

List all the nodes in the cluster's 22222222-2222-2222-2222-222222222222 pool

scw k8s node list cluster-id=11111111-1111-1111-1111-111111111111 pool-id=22222222-2222-2222-2222-222222222222

List all cluster nodes that are ready

scw k8s node list cluster-id=11111111-1111-1111-1111-111111111111 status=ready

Reboot a Node in a Cluster

Reboot a specific Node. The node will first be drained and pods will be rescheduled onto another node. Note that when there is not enough space to reschedule all the pods (such as in a one-node cluster, or with specific constraints), disruption of your applications may occur.

Usage:

scw k8s node reboot <node-id ...> [arg=value ...]

Args:

NameDescription
node-idRequiredID of the node to reboot
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Reboot a node

scw k8s node reboot 11111111-1111-1111-1111-111111111111

Replace a Node in a Cluster

Replace a specific Node. The node will first be drained and pods will be rescheduled onto another node. Note that when there is not enough space to reschedule all the pods (such as in a one-node cluster, or with specific constraints), disruption of your applications may occur.

Usage:

scw k8s node replace <node-id ...> [arg=value ...]

Args:

NameDescription
node-idRequiredID of the node to replace
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Replace a node

scw k8s node replace 11111111-1111-1111-1111-111111111111

Wait for a node to reach a stable state

Wait for a node to reach a stable state. This is similar to using --wait flag on other action commands, but without requiring a new action on the node.

Usage:

scw k8s node wait <node-id ...> [arg=value ...]

Args:

NameDescription
node-idRequiredID of the node.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config
timeoutDefault: 10m0sTimeout of the wait

Examples:

Wait for a node to reach a stable state

scw k8s node wait 11111111-1111-1111-1111-111111111111

Kapsule pool management commands

A pool is a set of identical nodes A pool has a name, a size (its desired number of nodes), node number limits (min, max), and a Scaleway Instance type. Changing those limits increases/decreases the size of a pool. As a result and depending on its load, the pool will grow or shrink within those limits when autoscaling is enabled.

Add an external node to a Kosmos Pool

Add an external node to a Kosmos Pool. This will connect via SSH to the node, download the multicloud configuration script and run it with sudo privileges. Keep in mind that your external node needs to have wget in order to download the script.

Usage:

scw k8s pool add-external-node [arg=value ...]

Args:

NameDescription
node-ipRequiredIP address of the external node
pool-idRequiredID of the Pool the node should be added to
usernameDefault: rootUsername used for the SSH connection
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Create a new Pool in a Cluster

Create a new pool in a specific Kubernetes cluster.

Usage:

scw k8s pool create [arg=value ...]

Args:

NameDescription
cluster-idRequiredCluster ID to which the pool will be attached
nameRequired
Default: <generated>
Pool name
node-typeRequired
Default: DEV1-M
Node type is the type of Scaleway Instance wanted for the pool. Nodes with insufficient memory are not eligible (DEV1-S, PLAY2-PICO, STARDUST). 'external' is a special node type used to provision instances from other cloud providers in a Kosmos Cluster
placement-group-idPlacement group ID in which all the nodes of the pool will be created, placement groups are limited to 20 instances.
autoscalingDefines whether the autoscaling feature is enabled for the pool
sizeRequired
Default: 1
Size (number of nodes) of the pool
min-sizeDefines the minimum size of the pool. Note that this field is only used when autoscaling is enabled on the pool
max-sizeDefines the maximum size of the pool. Note that this field is only used when autoscaling is enabled on the pool
container-runtimeOne of: unknown_runtime, docker, containerd, crioCustomization of the container runtime is available for each pool
autohealingDefines whether the autohealing feature is enabled for the pool
tags.{index}Tags associated with the pool, see managing tags
kubelet-args.{key}Kubelet arguments to be used by this pool. Note that this feature is experimental
upgrade-policy.max-unavailable
upgrade-policy.max-surge
zoneZone in which the pool's nodes will be spawned
root-volume-typeOne of: default_volume_type, l_ssd, b_ssd, sbs_5k, sbs_15kDefines the system volume disk type. Several types of volume (volume_type) are provided:
root-volume-sizeSystem volume disk size
public-ip-disabledDefines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway
security-group-idSecurity group ID in which all the nodes of the pool will be created. If unset, the pool will use default Kapsule security group in current zone
labels.{key}Kubernetes labels applied and reconciled on the nodes
taints.{index}.keyThe taint key to be applied to a node
taints.{index}.valueThe taint value corresponding to the taint key
taints.{index}.effectOne of: NoSchedule, PreferNoSchedule, NoExecuteEffect defines the effects of Taint
startup-taints.{index}.keyThe taint key to be applied to a node
startup-taints.{index}.valueThe taint value corresponding to the taint key
startup-taints.{index}.effectOne of: NoSchedule, PreferNoSchedule, NoExecuteEffect defines the effects of Taint
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Create a pool named 'bar' with 2 DEV1-XL on a cluster

scw k8s pool create cluster-id=11111111-1111-1111-1111-111111111111 name=bar node-type=DEV1-XL size=2

Create a pool named 'fish' with 5 GP1-L, autoscaling within 0 and 10 nodes and autohealing enabled

scw k8s pool create cluster-id=11111111-1111-1111-1111-111111111111 name=fish node-type=GP1-L size=5 min-size=0 max-size=10 autoscaling=true autohealing=true

Create a tagged pool named 'turtle' with 1 GP1-S which is using the already created placement group 22222222-2222-2222-2222-222222222222 for all the nodes in the pool on a cluster

scw k8s pool create cluster-id=11111111-1111-1111-1111-111111111111 name=turtle node-type=GP1-S size=1 placement-group-id=22222222-2222-2222-2222-222222222222 tags.0=turtle-uses-placement-group

Delete a Pool in a Cluster

Delete a specific pool from a cluster. Note that all the pool's nodes will also be deleted.

Usage:

scw k8s pool delete <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool to delete
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Delete a specific pool

scw k8s pool delete 11111111-1111-1111-1111-111111111111

Get a Pool in a Cluster

Retrieve details about a specific pool in a Kubernetes cluster.

Usage:

scw k8s pool get <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the requested pool
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Get a given pool

scw k8s pool get 11111111-1111-1111-1111-111111111111

List Pools in a Cluster

List all the existing pools for a specific Kubernetes cluster.

Usage:

scw k8s pool list [arg=value ...]

Args:

NameDescription
cluster-idRequiredID of the cluster whose pools will be listed
order-byOne of: created_at_asc, created_at_desc, updated_at_asc, updated_at_desc, name_asc, name_desc, status_asc, status_desc, version_asc, version_descSort order of returned pools
nameName to filter on, only pools containing this substring in their name will be returned
statusOne of: unknown, ready, deleting, deleted, scaling, warning, locked, upgradingStatus to filter on, only pools with this status will be returned
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw, all
Region to target. If none is passed will use default region from the config

Examples:

List all pools for a cluster

scw k8s pool list cluster-id=11111111-1111-1111-1111-111111111111

List all scaling pools for a cluster

scw k8s pool list cluster-id=11111111-1111-1111-1111-111111111111 status=scaling

List all pools for clusters containing 'foo' in their name

scw k8s pool list cluster-id=11111111-1111-1111-1111-111111111111 name=foo

List all pools for a cluster and order them by ascending creation date

scw k8s pool list cluster-id=11111111-1111-1111-1111-111111111111 order-by=created_at_asc

Remove a label from a Pool

Remove a label from all nodes of the pool (only apply to labels which was set through scaleway api).

Usage:

scw k8s pool remove-label <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool.
keyRequiredKey of the label.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Examples:

Remove a label of a specific pool

scw k8s pool remove-label 11111111-1111-1111-1111-111111111111 key=foo

Remove a startup taint from a Pool

New nodes will not have this taint at startup (does not remove taints from kubernetes side).

Usage:

scw k8s pool remove-startup-taint <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool.
keyRequiredKey of the taint.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Examples:

Remove a startup taint of a specific pool

scw k8s pool remove-startup-taint 11111111-1111-1111-1111-111111111111 key=foo

Remove a taint from a Pool

Remove a taint from all all nodes of the pool (only apply to taints which was set through scaleway api).

Usage:

scw k8s pool remove-taint <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool.
keyRequiredKey of the taint.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Examples:

Remove a taint to a specific pool

scw k8s pool remove-taint 11111111-1111-1111-1111-111111111111 key=foo

Apply a label to a Pool

Apply a label to all nodes of the pool which will be periodically reconciled by scaleway.

Usage:

scw k8s pool set-label <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool.
keyRequiredKey of the label.
valueRequiredValue of the label.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Examples:

Apply a label to a specific pool

scw k8s pool set-label 11111111-1111-1111-1111-111111111111 key=foo value=bar

Apply a full label to a specific pool

scw k8s pool set-label 11111111-1111-1111-1111-111111111111 key=organization.example/gpu value=true

Apply a startup taint to a Pool

Apply a taint at node creation but does not reconcile after.

Usage:

scw k8s pool set-startup-taint <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool.
keyRequiredKey of the taint.
valueRequiredValue of the taint.
effectRequired
One of: NoSchedule, PreferNoSchedule, NoExecute
Effect of the taint.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Examples:

Apply a startup taint to a specific pool

scw k8s pool set-startup-taint 11111111-1111-1111-1111-111111111111 key=foo value=bar effect=NoSchedule

Apply a full startup taint to a specific pool

scw k8s pool set-startup-taint 11111111-1111-1111-1111-111111111111 key=organization.example/gpu value=true effect=NoSchedule

Apply a taint to a Pool

Apply a taint to all nodes of the pool which will be periodically reconciled by scaleway.

Usage:

scw k8s pool set-taint <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool.
keyRequiredKey of the taint.
valueRequiredValue of the taint.
effectRequired
One of: NoSchedule, PreferNoSchedule, NoExecute
Effect of the taint.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config

Examples:

Apply a taint to a specific pool

scw k8s pool set-taint 11111111-1111-1111-1111-111111111111 key=foo value=bar effect=NoSchedule

Apply a full taint to a specific pool

scw k8s pool set-taint 11111111-1111-1111-1111-111111111111 key=organization.example/gpu value=true effect=NoSchedule

Update a Pool in a Cluster

Update the attributes of a specific pool, such as its desired size, autoscaling settings, and tags. To upgrade a pool, you will need to use the dedicated endpoint.

Usage:

scw k8s pool update <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool to update
autoscalingNew value for the pool autoscaling enablement
sizeNew desired pool size
min-sizeNew minimum size for the pool
max-sizeNew maximum size for the pool
autohealingNew value for the pool autohealing enablement
tags.{index}New tags associated with the pool
kubelet-args.{key}New Kubelet arguments to be used by this pool. Note that this feature is experimental
upgrade-policy.max-unavailable
upgrade-policy.max-surge
security-group-idSecurity group ID in which all the nodes of the pool will be moved
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Enable autoscaling on a given pool

scw k8s pool update 11111111-1111-1111-1111-111111111111 autoscaling=true

Reduce the size and maximum size of a given pool to 4

scw k8s pool update 11111111-1111-1111-1111-111111111111 size=4 max-size=4

Modify the tags of a given pool

scw k8s pool update 11111111-1111-1111-1111-111111111111 tags.0=my tags.1=new tags.2=pool

Remove all tags of a given pool

scw k8s pool update 11111111-1111-1111-1111-111111111111 tags=none

Upgrade a Pool in a Cluster

Upgrade the Kubernetes version of a specific pool. Note that it only works if the targeted version matches the cluster's version. This will drain and replace the nodes in that pool.

Usage:

scw k8s pool upgrade <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool to upgrade
versionRequiredNew Kubernetes version for the pool
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Upgrade a specific pool to the Kubernetes version 1.31.2

scw k8s pool upgrade 11111111-1111-1111-1111-111111111111 version=1.31.2

Wait for a pool to reach a stable state

Wait for a pool to reach a stable state. This is similar to using --wait flag on other action commands, but without requiring a new action on the node.

Usage:

scw k8s pool wait <pool-id ...> [arg=value ...]

Args:

NameDescription
pool-idRequiredID of the pool.
regionDefault: fr-parRegion to target. If none is passed will use default region from the config
timeoutDefault: 10m0sTimeout of the wait

Examples:

Wait for a pool to reach a stable state

scw k8s pool wait 11111111-1111-1111-1111-111111111111

Available Kubernetes versions commands

A version is a vanilla Kubernetes version like x.y.z It comprises a major version x, a minor version y, and a patch version z. At the minimum, Kapsule (Scaleway's managed Kubernetes), will support the last patch version for the past three minor releases. Also, each version has a different set of CNIs, eventually container runtimes, feature gates, and admission plugins available. See our Version Support Policy.

Get a Version

Retrieve a specific Kubernetes version and its details.

Usage:

scw k8s version get <version-name ...> [arg=value ...]

Args:

NameDescription
version-nameRequiredRequested version name
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

Get the Kubernetes version 1.31.2

scw k8s version get 1.31.2

List all available Versions

List all available versions for the creation of a new Kubernetes cluster.

Usage:

scw k8s version list [arg=value ...]

Args:

NameDescription
regionDefault: fr-par
One of: fr-par, nl-ams, pl-waw
Region to target. If none is passed will use default region from the config

Examples:

List all available Kubernetes version in Kapsule

scw k8s version list