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

Bump kubernetes-sigs/kind to latest release #4147

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 2 additions & 2 deletions UPSTREAM_PROJECTS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ projects:
go_version: N/A
- name: kind
versions:
- tag: v0.25.0
go_version: "1.22"
- tag: v0.26.0
go_version: "1.23"
- org: linuxkit
repos:
- name: linuxkit
Expand Down
2 changes: 1 addition & 1 deletion projects/kubernetes-sigs/kind/GIT_TAG
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.25.0
v0.26.0
2 changes: 1 addition & 1 deletion projects/kubernetes-sigs/kind/GOLANG_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.22
1.23
2 changes: 1 addition & 1 deletion projects/kubernetes-sigs/kind/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## **Kind**
![Version](https://img.shields.io/badge/version-v0.25.0-blue)
![Version](https://img.shields.io/badge/version-v0.26.0-blue)
![Build Status](https://codebuild.us-west-2.amazonaws.com/badges?uuid=eyJlbmNyeXB0ZWREYXRhIjoiVkgvQm93WHUvUWJ1U2ZhSG9JTUJNMFdjdGtwSkIyRCt1azM0THYxcWYweC8rM2lHRmNYMXI0QkVPUm4yZ0JZZ1c4RzdMeTJ3dGtpREdYeFpvTEhtc2FnPSIsIml2UGFyYW1ldGVyU3BlYyI6Im9GV2EzRGZQNVZ5c25kTmoiLCJtYXRlcmlhbFNldFNlcmlhbCI6MX0%3D&branch=main)

[Kind](https://github.com/kubernetes-sigs/kind) is a tool for running local Kubernetes clusters using Docker container "nodes". kind bootstraps each "node" with `kubeadm`. kind consists of:
Expand Down
14 changes: 7 additions & 7 deletions projects/kubernetes-sigs/kind/build/node-image-build-args.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ ETCD_VERSION=$(build::eksd_releases::get_eksd_component_version "etcd" $EKSD_REL

# Expected versions provided by kind which are replaced in the docker build with our versions
# when updating kind check the following, they may need to be updated
# https://github.com/kubernetes-sigs/kind/blob/v0.25.0/pkg/build/nodeimage/const_cni.go#L23
KINDNETD_IMAGE_TAG="docker.io/kindest/kindnetd:v20241108-5c6d2daf"
# https://github.com/kubernetes-sigs/kind/blob/v0.25.0/pkg/build/nodeimage/const_storage.go#L28
LOCAL_PATH_PROVISONER_IMAGE_TAG="docker.io/kindest/local-path-provisioner:v20241108-5c6d2daf"
# https://github.com/kubernetes-sigs/kind/blob/v0.25.0/pkg/build/nodeimage/const_storage.go#L29
LOCAL_PATH_HELPER_IMAGE_TAG="docker.io/kindest/local-path-helper:v20230510-486859a6"
# https://github.com/kubernetes-sigs/kind/blob/v0.25.0/images/base/files/etc/containerd/config.toml#L37
# https://github.com/kubernetes-sigs/kind/blob/v0.26.0/pkg/build/nodeimage/const_cni.go#L23
KINDNETD_IMAGE_TAG="docker.io/kindest/kindnetd:v20241212-9f82dd49"
# https://github.com/kubernetes-sigs/kind/blob/v0.26.0/pkg/build/nodeimage/const_storage.go#L29
LOCAL_PATH_PROVISONER_IMAGE_TAG="docker.io/kindest/local-path-provisioner:v20241212-8ac705d0"
# https://github.com/kubernetes-sigs/kind/blob/v0.26.0/pkg/build/nodeimage/const_storage.go#L29
LOCAL_PATH_HELPER_IMAGE_TAG="docker.io/kindest/local-path-helper:v20241212-8ac705d0"
# https://github.com/kubernetes-sigs/kind/blob/v0.26.0/images/base/files/etc/containerd/config.toml#L37
PAUSE_IMAGE_TAG="registry.k8s.io/pause:3.10"

mkdir -p $(dirname $OUTPUT_FILE)
Expand Down