Merge pull request #3925 from BenTheElder/bump-cni

upgrade cni plugins, crictl
This commit is contained in:
Kubernetes Prow Robot
2025-05-06 04:37:13 -07:00
committed by GitHub

View File

@@ -155,7 +155,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.32.0"
ARG CRICTL_VERSION="v1.33.0"
RUN git clone --filter=tree:0 "${CRI_TOOLS_CLONE_URL}" /cri-tools \
&& cd /cri-tools \
&& git checkout "${CRICTL_VERSION}" \
@@ -168,7 +168,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.6.1"
ARG CNI_PLUGINS_VERSION="v1.7.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 \