This is the eleventh patch release in the 1.1.z release branch of runc.
It primarily fixes a few issues with runc's handling of containers that
are configured to join existing user namespaces, as well as improvements
to cgroupv2 support.
- Fix several issues with userns path handling.
- Support memory.peak and memory.swap.peak in cgroups v2.
Add swapOnlyUsage in MemoryStats. This field reports swap-only usage.
For cgroupv1, Usage and Failcnt are set by subtracting memory usage
from memory+swap usage. For cgroupv2, Usage, Limit, and MaxUsage
are set.
- build(deps): bump github.com/cyphar/filepath-securejoin.
- release notes: https://github.com/opencontainers/runc/releases/tag/v1.1.11
- full diff: https://github.com/opencontainers/runc/compare/v1.1.10...v1.1.11
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
| ... | ... |
@@ -283,7 +283,7 @@ RUN git init . && git remote add origin "https://github.com/opencontainers/runc. |
| 283 | 283 |
# that is used. If you need to update runc, open a pull request in the containerd |
| 284 | 284 |
# project first, and update both after that is merged. When updating RUNC_VERSION, |
| 285 | 285 |
# consider updating runc in vendor.mod accordingly. |
| 286 |
-ARG RUNC_VERSION=v1.1.10 |
|
| 286 |
+ARG RUNC_VERSION=v1.1.11 |
|
| 287 | 287 |
RUN git fetch -q --depth 1 origin "${RUNC_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
|
| 288 | 288 |
|
| 289 | 289 |
FROM base AS runc-build |
| ... | ... |
@@ -9,7 +9,7 @@ set -e |
| 9 | 9 |
# the containerd project first, and update both after that is merged. |
| 10 | 10 |
# |
| 11 | 11 |
# When updating RUNC_VERSION, consider updating runc in vendor.mod accordingly |
| 12 |
-: "${RUNC_VERSION:=v1.1.10}"
|
|
| 12 |
+: "${RUNC_VERSION:=v1.1.11}"
|
|
| 13 | 13 |
|
| 14 | 14 |
install_runc() {
|
| 15 | 15 |
RUNC_BUILDTAGS="${RUNC_BUILDTAGS:-"seccomp"}"
|