Skip to content

Commit c17c183

Browse files
authored
Merge pull request #4069 from BenTheElder/latest-images
updating all images to latest
2 parents 1f8526c + 36ee7a6 commit c17c183

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

images/base/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ RUN git clone --filter=tree:0 "${CONTAINERD_CLONE_URL}" /containerd \
140140
# stage for building runc
141141
FROM go-build AS build-runc
142142
ARG 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"
144146
ARG RUNC_CLONE_URL="https://github.com/opencontainers/runc"
145147
RUN git clone --filter=tree:0 "${RUNC_CLONE_URL}" /runc \
146148
&& cd /runc \

pkg/apis/config/defaults/image.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ limitations under the License.
1818
package 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"

pkg/build/nodeimage/const_cni.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package nodeimage
2020
The 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

2525
var defaultCNIImages = []string{kindnetdImage}
2626

pkg/build/nodeimage/const_storage.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
3333
var defaultStorageImages = []string{storageProvisionerImage, storageHelperImage}

pkg/build/nodeimage/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

pkg/cluster/internal/loadbalancer/const.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package 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
2323
const ConfigPath = "/usr/local/etc/haproxy/haproxy.cfg"

0 commit comments

Comments
 (0)