moby/patch/backport-0001-20.10-update-containerd-binary-to-v1.6.16.patch
dayshappy b823202052 [Backport]update containerd binary to v1.6.16
- Fix push error propagation
- Fix slice append error with HugepageLimits for Linux
- Update default seccomp profile for PKU and CAP_SYS_NICE
- Fix overlayfs error when upperdirlabel option is set

full diff: containerd/containerd@v1.6.15...v1.6.16

reference:https://github.com/moby/moby/commit/526ae907e2

Signed-off-by: dayshappy <zhangzhihui@xfusion.com>
2023-04-01 10:38:31 +08:00

36 lines
1.3 KiB
Diff

From 526ae907e2828307f54315b184457c64bf1b299d Mon Sep 17 00:00:00 2001
From: Sebastiaan van Stijn <github@gone.nl>
Date: Mon, 30 Jan 2023 09:17:32 +0100
Subject: [PATCH] [20.10] update containerd binary to v1.6.16
Notable Updates
- Fix push error propagation
- Fix slice append error with HugepageLimits for Linux
- Update default seccomp profile for PKU and CAP_SYS_NICE
- Fix overlayfs error when upperdirlabel option is set
full diff: https://github.com/containerd/containerd/compare/v1.6.15...v1.6.16
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
---
hack/dockerfile/install/containerd.installer | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hack/dockerfile/install/containerd.installer b/hack/dockerfile/install/containerd.installer
index 1915f8ae35..8bc635be81 100755
--- a/hack/dockerfile/install/containerd.installer
+++ b/hack/dockerfile/install/containerd.installer
@@ -15,7 +15,7 @@ set -e
# the binary version you may also need to update the vendor version to pick up
# bug fixes or new APIs, however, usually the Go packages are built from a
# commit from the master branch.
-: "${CONTAINERD_VERSION:=v1.6.15}"
+: "${CONTAINERD_VERSION:=v1.6.16}"
install_containerd() (
echo "Install containerd version $CONTAINERD_VERSION"
--
2.20.1