- full diff: https://github.com/containerd/containerd/compare/v1.7.2...v1.7.3
- release notes: https://github.com/containerd/containerd/releases/tag/v1.7.3
----
Welcome to the v1.7.3 release of containerd!
The third patch release for containerd 1.7 contains various fixes and updates.
Notable Updates
- RunC: Update runc binary to v1.1.8
- CRI: Fix `additionalGids`: it should fallback to `imageConfig.User`
when `securityContext.RunAsUser`,`RunAsUsername` are empty
- CRI: write generated CNI config atomically
- Port-Forward: Correctly handle known errors
- Resolve docker.NewResolver race condition
- Fix `net.ipv4.ping_group_range` with userns
- Runtime/V2/RunC: handle early exits w/o big locks
- SecComp: always allow `name_to_handle_at`
- CRI: Windows Pod Stats: Add a check to skip stats for containers that
are not running
- Task: don't `close()` io before cancel()
- Remove CNI conf_template deprecation
- Fix issue for HPC pod metrics
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
| ... | ... |
@@ -198,7 +198,7 @@ RUN git init . && git remote add origin "https://github.com/containerd/container |
| 198 | 198 |
# When updating the binary version you may also need to update the vendor |
| 199 | 199 |
# version to pick up bug fixes or new APIs, however, usually the Go packages |
| 200 | 200 |
# are built from a commit from the master branch. |
| 201 |
-ARG CONTAINERD_VERSION=v1.7.2 |
|
| 201 |
+ARG CONTAINERD_VERSION=v1.7.3 |
|
| 202 | 202 |
RUN git fetch -q --depth 1 origin "${CONTAINERD_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
|
| 203 | 203 |
|
| 204 | 204 |
FROM base AS containerd-build |
| ... | ... |
@@ -168,7 +168,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref |
| 168 | 168 |
ARG GO_VERSION=1.20.6 |
| 169 | 169 |
ARG GOTESTSUM_VERSION=v1.8.2 |
| 170 | 170 |
ARG GOWINRES_VERSION=v0.3.0 |
| 171 |
-ARG CONTAINERD_VERSION=v1.7.2 |
|
| 171 |
+ARG CONTAINERD_VERSION=v1.7.3 |
|
| 172 | 172 |
|
| 173 | 173 |
# Environment variable notes: |
| 174 | 174 |
# - GO_VERSION must be consistent with 'Dockerfile' used by Linux. |
| ... | ... |
@@ -15,7 +15,7 @@ set -e |
| 15 | 15 |
# the binary version you may also need to update the vendor version to pick up |
| 16 | 16 |
# bug fixes or new APIs, however, usually the Go packages are built from a |
| 17 | 17 |
# commit from the master branch. |
| 18 |
-: "${CONTAINERD_VERSION:=v1.7.2}"
|
|
| 18 |
+: "${CONTAINERD_VERSION:=v1.7.3}"
|
|
| 19 | 19 |
|
| 20 | 20 |
install_containerd() ( |
| 21 | 21 |
echo "Install containerd version $CONTAINERD_VERSION" |