File tree Expand file tree Collapse file tree 6 files changed +9
-7
lines changed
cluster/internal/loadbalancer Expand file tree Collapse file tree 6 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,9 @@ RUN git clone --filter=tree:0 "${CONTAINERD_CLONE_URL}" /containerd \
140140# stage for building runc
141141FROM go-build AS build-runc
142142ARG TARGETARCH GO_VERSION
143- ARG RUNC_VERSION="v1.3.3"
143+ # TODO: upgrade to 1.3.x to match containerd after resolving:
144+ # https://github.com/kubernetes/kubernetes/issues/135214
145+ ARG RUNC_VERSION="v1.2.9"
144146ARG RUNC_CLONE_URL="https://github.com/opencontainers/runc"
145147RUN git clone --filter=tree:0 "${RUNC_CLONE_URL}" /runc \
146148 && cd /runc \
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ limitations under the License.
1818package defaults
1919
2020// Image is the default for the Config.Image field, aka the default node image.
21- const Image = "kindest/node:v1.34.0 @sha256:7416a61b42b1662ca6ca89f02028ac133a309a2a30ba309614e8ec94d976dc5a "
21+ const Image = "kindest/node:v1.34.3 @sha256:08497ee19eace7b4b5348db5c6a1591d7752b164530a36f855cb0f2bdcbadd48 "
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ package nodeimage
2020The default CNI manifest and images are our own tiny kindnet
2121*/
2222
23- const kindnetdImage = "docker.io/kindest/kindnetd:v20250512-df8de77b "
23+ const kindnetdImage = "docker.io/kindest/kindnetd:v20251212-v0.29.0-alpha-105-g20ccfc88 "
2424
2525var defaultCNIImages = []string {kindnetdImage }
2626
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ NOTE: we have customized it in the following ways:
2626- tolerate control plane scheduling taints
2727*/
2828
29- const storageProvisionerImage = "docker.io/kindest/local-path-provisioner:v20250214-acbabc1a "
30- const storageHelperImage = "docker.io/kindest/local-path-helper:v20241212-8ac705d0 "
29+ const storageProvisionerImage = "docker.io/kindest/local-path-provisioner:v20251212-v0.29.0-alpha-105-g20ccfc88 "
30+ const storageHelperImage = "docker.io/kindest/local-path-helper:v20251211-v0.29.0-alpha-100-g82a92c5d "
3131
3232// image we need to preload
3333var defaultStorageImages = []string {storageProvisionerImage , storageHelperImage }
Original file line number Diff line number Diff line change @@ -22,4 +22,4 @@ const DefaultImage = "kindest/node:latest"
2222// DefaultBaseImage is the default base image used
2323// TODO: come up with a reasonable solution to digest pinning
2424// https://github.com/moby/moby/issues/43188
25- const DefaultBaseImage = "docker.io/kindest/base:v20250710-v0.29.0-alpha-25-g9ac770cf "
25+ const DefaultBaseImage = "docker.io/kindest/base:v20251215-d00590df "
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ limitations under the License.
1717package loadbalancer
1818
1919// Image defines the loadbalancer image:tag
20- const Image = "docker.io/kindest/haproxy:v20230606-42a2262b "
20+ const Image = "docker.io/kindest/haproxy:v20251211-v0.29.0-alpha-100-g82a92c5d "
2121
2222// ConfigPath defines the path to the config file in the image
2323const ConfigPath = "/usr/local/etc/haproxy/haproxy.cfg"
You can’t perform that action at this time.
0 commit comments