From 58e30d99be0a826111a415cb2b44062a78d04817 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 14 Mar 2024 08:24:49 +0900 Subject: [PATCH 1/4] bump containerd to 1.7.14 https://github.com/containerd/containerd/releases/tag/v1.7.14 Signed-off-by: Akihiro Suda --- images/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/base/Dockerfile b/images/base/Dockerfile index e9440cb1f1..f449ebdbe3 100644 --- a/images/base/Dockerfile +++ b/images/base/Dockerfile @@ -121,7 +121,7 @@ RUN eval "$(gimme "${GO_VERSION}")" \ # stage for building containerd FROM go-build as build-containerd ARG TARGETARCH GO_VERSION -ARG CONTAINERD_VERSION="v1.7.13" +ARG CONTAINERD_VERSION="v1.7.14" ARG CONTAINERD_CLONE_URL="https://github.com/containerd/containerd" # we don't build with optional snapshotters, we never select any of these # they're not ideal inside kind anyhow, and we save some disk space From e86d486b12930a81cf8129cbf18edae194a9a816 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 14 Mar 2024 08:25:43 +0900 Subject: [PATCH 2/4] bump cri-tools to v1.29.0 https://github.com/kubernetes-sigs/cri-tools/releases/tag/v1.29.0 Signed-off-by: Akihiro Suda --- images/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/base/Dockerfile b/images/base/Dockerfile index f449ebdbe3..c1d141e30e 100644 --- a/images/base/Dockerfile +++ b/images/base/Dockerfile @@ -152,7 +152,7 @@ RUN git clone --filter=tree:0 "${RUNC_CLONE_URL}" /runc \ FROM go-build as build-crictl ARG TARGETARCH GO_VERSION ARG CRI_TOOLS_CLONE_URL="https://github.com/kubernetes-sigs/cri-tools" -ARG CRICTL_VERSION="v1.28.0" +ARG CRICTL_VERSION="v1.29.0" RUN git clone --filter=tree:0 "${CRI_TOOLS_CLONE_URL}" /cri-tools \ && cd /cri-tools \ && git checkout "${CRICTL_VERSION}" \ From e734c711db1f49b1f068495f4f11355d0440e882 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 14 Mar 2024 08:26:10 +0900 Subject: [PATCH 3/4] bump CNI plugins to v1.4.1 https://github.com/containernetworking/plugins/releases/tag/v1.4.0 https://github.com/containernetworking/plugins/releases/tag/v1.4.1 Signed-off-by: Akihiro Suda --- images/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/base/Dockerfile b/images/base/Dockerfile index c1d141e30e..fce8d361de 100644 --- a/images/base/Dockerfile +++ b/images/base/Dockerfile @@ -164,7 +164,7 @@ RUN git clone --filter=tree:0 "${CRI_TOOLS_CLONE_URL}" /cri-tools \ # stage for building cni-plugins FROM go-build as build-cni ARG TARGETARCH GO_VERSION -ARG CNI_PLUGINS_VERSION="v1.3.0" +ARG CNI_PLUGINS_VERSION="v1.4.1" ARG CNI_PLUGINS_CLONE_URL="https://github.com/containernetworking/plugins" RUN git clone --filter=tree:0 "${CNI_PLUGINS_CLONE_URL}" /cni-plugins \ && cd /cni-plugins \ From 483f235e56c45ba81de13c8f824f163146404ab7 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 14 Mar 2024 08:26:53 +0900 Subject: [PATCH 4/4] bump containerd-fuse-overlayfs to v1.0.8 https://github.com/containerd/fuse-overlayfs-snapshotter/releases/tag/v1.0.7 https://github.com/containerd/fuse-overlayfs-snapshotter/releases/tag/v1.0.8 Signed-off-by: Akihiro Suda --- images/base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/base/Dockerfile b/images/base/Dockerfile index fce8d361de..47d5bcd01e 100644 --- a/images/base/Dockerfile +++ b/images/base/Dockerfile @@ -184,7 +184,7 @@ RUN git clone --filter=tree:0 "${CNI_PLUGINS_CLONE_URL}" /cni-plugins \ # stage for building containerd-fuse-overlayfs FROM go-build as build-fuse-overlayfs ARG TARGETARCH GO_VERSION -ARG CONTAINERD_FUSE_OVERLAYFS_VERSION="v1.0.6" +ARG CONTAINERD_FUSE_OVERLAYFS_VERSION="v1.0.8" ARG CONTAINERD_FUSE_OVERLAYFS_CLONE_URL="https://github.com/containerd/fuse-overlayfs-snapshotter" RUN git clone --filter=tree:0 "${CONTAINERD_FUSE_OVERLAYFS_CLONE_URL}" /fuse-overlayfs-snapshotter \ && cd /fuse-overlayfs-snapshotter \