Skip to content

Commit 398e15b

Browse files
committed
update containerd binary to v1.7.19
Update the containerd binary that's used in CI and for the static packages. - release notes: https://github.com/containerd/containerd/releases/tag/v1.7.19 - full diff: containerd/containerd@v1.7.18...v1.7.19 Welcome to the v1.7.19 release of containerd! The nineteenth patch release for containerd 1.7 contains various updates and splits the main module from the api module in preparation for the same change in containerd 2.0. Splitting the modules will allow 1.7 and 2.x to both exist as transitive dependencies without running into API registration errors. Projects should use this version as the minimum 1.7 version in preparing to use containerd 2.0 or to be imported alongside it. Highlights - Fix support for OTLP config - Add API go module - Remove overlayfs volatile option on temp mounts - Update runc binary to v1.1.13 - Migrate platforms package to github.com/containerd/platforms - Migrate reference/docker package to github.com/distribution/reference Container Runtime Interface (CRI) - Fix panic in NRI from nil CRI reference - Fix Windows HPC working directory Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent eea3800 commit 398e15b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ RUN git init . && git remote add origin "https://github.com/containerd/container
196196
# When updating the binary version you may also need to update the vendor
197197
# version to pick up bug fixes or new APIs, however, usually the Go packages
198198
# are built from a commit from the master branch.
199-
ARG CONTAINERD_VERSION=v1.7.18
199+
ARG CONTAINERD_VERSION=v1.7.19
200200
RUN git fetch -q --depth 1 origin "${CONTAINERD_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
201201

202202
FROM base AS containerd-build

Dockerfile.windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
164164
ARG GO_VERSION=1.21.11
165165
ARG GOTESTSUM_VERSION=v1.8.2
166166
ARG GOWINRES_VERSION=v0.3.1
167-
ARG CONTAINERD_VERSION=v1.7.18
167+
ARG CONTAINERD_VERSION=v1.7.19
168168

169169
# Environment variable notes:
170170
# - GO_VERSION must be consistent with 'Dockerfile' used by Linux.

hack/dockerfile/install/containerd.installer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set -e
1515
# the binary version you may also need to update the vendor version to pick up
1616
# bug fixes or new APIs, however, usually the Go packages are built from a
1717
# commit from the master branch.
18-
: "${CONTAINERD_VERSION:=v1.7.18}"
18+
: "${CONTAINERD_VERSION:=v1.7.19}"
1919

2020
install_containerd() (
2121
echo "Install containerd version $CONTAINERD_VERSION"

0 commit comments

Comments
 (0)