Merge pull request #505 from Random-Liu/update-containerd
Update containerd to 6c7abf7c76c1973d4fb4b0bad51691de84869a51.
This commit is contained in:
commit
93519cd85c
@ -32,7 +32,7 @@ while true; do
|
||||
# cri-containerd to be working.
|
||||
if ! timeout ${COMMAND_TIMEOUT} ${CRICTL} sandboxes > /dev/null; then
|
||||
echo "crictl sandboxes timeout!"
|
||||
pkill -9 containerd
|
||||
pkill containerd
|
||||
pkill cri-containerd
|
||||
# Wait for a while, as we don't want to kill it again before it is really up.
|
||||
sleep ${SLEEP_SECONDS}
|
||||
|
@ -41,7 +41,7 @@ do
|
||||
echo "Need to update the value of ${key} from ${version_commitid} to ${vendor_commitid}."
|
||||
else
|
||||
echo "Updating the value of ${key} from ${version_commitid} to ${vendor_commitid}."
|
||||
sed -i "s/${version_commitid}/${vendor_commitid}/g" hack/versions
|
||||
sed -i "s/\b${version_commitid}$/${vendor_commitid}/g" hack/versions
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
@ -1,6 +1,6 @@
|
||||
RUNC_VERSION=74a17296470088de3805e138d3d87c62e613dfc4
|
||||
CNI_VERSION=v0.6.0
|
||||
CONTAINERD_VERSION=v1.0.0
|
||||
CONTAINERD_VERSION=6c7abf7c76c1973d4fb4b0bad51691de84869a51
|
||||
CONTAINERD_REPO=
|
||||
CRITOOL_VERSION=v1.0.0-alpha.0
|
||||
KUBERNETES_VERSION=164317879bcd810b97e5ebf1c8df041770f2ff1b
|
||||
|
@ -1,7 +1,7 @@
|
||||
github.com/blang/semver v3.1.0
|
||||
github.com/BurntSushi/toml a368813c5e648fee92e5f6c30e3944ff9d5e8895
|
||||
github.com/containerd/cgroups 29da22c6171a4316169f9205ab6c49f59b5b852f
|
||||
github.com/containerd/containerd v1.0.0
|
||||
github.com/containerd/containerd 6c7abf7c76c1973d4fb4b0bad51691de84869a51
|
||||
github.com/containerd/continuity cf279e6ac893682272b4479d4c67fd3abf878b4e
|
||||
github.com/containerd/fifo fbfb6a11ec671efbe94ad1c12c2e98773f19e1e6
|
||||
github.com/containerd/typeurl f6943554a7e7e88b3c14aad190bf05932da84788
|
||||
|
2
vendor/github.com/containerd/containerd/content/helpers.go
generated
vendored
2
vendor/github.com/containerd/containerd/content/helpers.go
generated
vendored
@ -77,7 +77,7 @@ func Copy(ctx context.Context, cw Writer, r io.Reader, size int64, expected dige
|
||||
r, err = seekReader(r, ws.Offset, size)
|
||||
if err != nil {
|
||||
if !isUnseekable(err) {
|
||||
return errors.Wrapf(err, "unabled to resume write to %v", ws.Ref)
|
||||
return errors.Wrapf(err, "unable to resume write to %v", ws.Ref)
|
||||
}
|
||||
|
||||
// reader is unseekable, try to move the writer back to the start.
|
||||
|
Loading…
Reference in New Issue
Block a user