Skip to content

Commit eeeecd5

Browse files
committed
changelog: Kubernetes 1.36 by default
1 parent c068d52 commit eeeecd5

3 files changed

Lines changed: 36 additions & 3 deletions

File tree

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: Kubernetes 1.36 is now used by default
3+
description: Kubernetes 1.36 is now the default version for new clusters on Clever Kubernetes Engine
4+
date: 2026-05-05
5+
tags:
6+
- kubernetes
7+
- release
8+
authors:
9+
- name: Gilles Biannic
10+
link: https://github.com/GillesBIANNIC
11+
image: https://github.com/GillesBIANNIC.png?size=40
12+
- name: David Legrand
13+
link: https://github.com/davlgd
14+
image: https://github.com/davlgd.png?size=40
15+
excludeSearch: true
16+
---
17+
18+
Kubernetes 1.36 "Haru" is available on Clever Kubernetes Engine [since its release](/changelog/2026/04-24-kubernetes-1.36/). It's now the default version deployed when no `--cluster-version` is specified. New clusters will run on v1.36 unless you explicitly pick another supported one.
19+
20+
You can still target v1.35 or v1.34 with `--cluster-version`, as long as they remain supported (n-2 from the current release, mirroring the official Kubernetes support policy):
21+
22+
```bash
23+
clever k8s create myCluster --cluster-version 1.35
24+
```
25+
26+
Existing clusters are not migrated automatically. To move one to v1.36, use [Clever Tools](/doc/cli/kubernetes/):
27+
28+
```bash
29+
clever k8s version update myClusterNameOrId 1.36
30+
```
31+
32+
- [Learn more about Kubernetes 1.36](/changelog/2026/04-24-kubernetes-1.36/)
33+
- [Learn more about Kubernetes on Clever Cloud](/doc/kubernetes/)

content/doc/kubernetes/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ example-nodegroup 2 2 M Synced 2m
285285
kubectl get nodes
286286

287287
NAME STATUS ROLES AGE VERSION
288-
example-nodegroup-node0 Ready <none> 6d17h v1.35.4
289-
example-nodegroup-node1 Ready <none> 3d18h v1.35.4
288+
example-nodegroup-node0 Ready <none> 6d17h v1.36.0
289+
example-nodegroup-node1 Ready <none> 3d18h v1.36.0
290290
```
291291

292292
`DESIREDNODECOUNT` is the number of nodes you asked for, `CURRENTNODECOUNT` is the number of nodes currently in the node group. When creating a node group, `CURRENTNODECOUNT` starts at `0` and increases until it reaches `DESIREDNODECOUNT`.

data/kubernetes_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Update this file when a new Kubernetes version becomes available or when the
44
# platform default rolls forward.
55
current: "1.36"
6-
default: "1.35"
6+
default: "1.36"
77
supported:
88
- "1.36"
99
- "1.35"

0 commit comments

Comments
 (0)