Skip to content

Commit 420c38c

Browse files
committed
Update kubernetes
Fixes CVE-2024-24790 in kubectl
1 parent 99adb82 commit 420c38c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ RUN apk add curl grep
4444
# * also update in init-cluster.sh. vars.tf, ApplicationConfigurator.groovy and apply.sh
4545
# When upgrading to 1.26 we can verify the kubectl signature with cosign!
4646
# https://kubernetes.io/blog/2022/12/12/kubernetes-release-artifact-signing/
47-
ARG K8S_VERSION=1.29.1
48-
ARG KUBECTL_CHECKSUM=69ab3a931e826bf7ac14d38ba7ca637d66a6fcb1ca0e3333a2cafdf15482af9f
47+
ARG K8S_VERSION=1.29.8
48+
ARG KUBECTL_CHECKSUM=038454e0d79748aab41668f44ca6e4ac8affd1895a94f592b9739a0ae2a5f06a
4949
# When updating, also upgrade helm image in ApplicationConfigurator
5050
ARG HELM_VERSION=3.15.4
5151
# bash curl unzip required for Jenkins downloader

docs/k3d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ k3d cluster create gitops-playground \
114114
# Mount port for ingress
115115
-p 80:80@server:0:direct \
116116
# Pin image for reproducibility
117-
--image=rancher/k3s:v1.29.1-k3s2 \
117+
--image=rancher/k3s:v1.29.8-k3s2 \
118118
# Disable built-in ingress controller, because we want to use the same one locally and in prod
119119
--k3s-arg=--disable=traefik@server:0 \
120120
# Allow node ports < 30000

scripts/init-cluster.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# This variable is also read in Jenkinsfile
55
K3D_VERSION=5.6.0
66
# When updating please also adapt in Dockerfile, vars.tf and ApplicationConfigurator.groovy
7-
K8S_VERSION=1.29.1
8-
K3S_VERSION="rancher/k3s:v${K8S_VERSION}-k3s2"
7+
K8S_VERSION=1.29.8
8+
K3S_VERSION="rancher/k3s:v${K8S_VERSION}-k3s1"
99

1010
set -o errexit
1111
set -o nounset

0 commit comments

Comments
 (0)