Skip to content
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

k8s: bump kubeadm and crictl versions #138

Merged
merged 2 commits into from
Jan 27, 2025
Merged
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
13 changes: 4 additions & 9 deletions conf-files/kubeadm.conf
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
# Copied and modified from https://github.com/kata-containers/tests/blob/main/integration/kubernetes/kubeadm/config.yaml
#
apiVersion: kubeadm.k8s.io/v1beta3
apiVersion: kubeadm.k8s.io/v1beta4
kind: InitConfiguration
nodeRegistration:
criSocket: unix:///run/containerd/containerd.sock
imagePullPolicy: IfNotPresent
kubeletExtraArgs:
allowed-unsafe-sysctls: kernel.msg*,kernel.shm.*,net.*
v: "4"
---
apiVersion: kubeadm.k8s.io/v1beta3
apiVersion: kubeadm.k8s.io/v1beta4
kind: ClusterConfiguration
# This must match the version defined in ./tasks/util/env.py - K8S_VERSION
kubernetesVersion: v1.28.2
# This must match the version defined in ./tasks/util/versions.py - K8S_VERSION
kubernetesVersion: v1.32.1
networking:
dnsDomain: cluster.local
# Subnet from the Calico installation guide
Expand Down
4 changes: 2 additions & 2 deletions tasks/util/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

# Kubernetes versions
CONTAINERD_VERSION = "1.7.19"
K8S_VERSION = "1.28.2"
K8S_VERSION = "1.32.1"
CALICO_VERSION = "3.28.1"
CNI_VERSION = "1.3.0"
CRICTL_VERSION = "1.28.0"
CRICTL_VERSION = "1.32.0"
K9S_VERSION = "0.32.5"
PAUSE_IMAGE_VERSION = "3.9"

Expand Down