Skip to content

Commit

Permalink
Docker 20.10 bumps containerd version. The new containerd package is …
Browse files Browse the repository at this point in the history
…called "containerd" changing from "docker-containerd"

Bump memory requirement for test container. moby/moby#41168
  • Loading branch information
jnc74743 committed Jul 9, 2021
1 parent 511b906 commit 8788319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions healthcheck_wn_condor
Original file line number Diff line number Diff line change
Expand Up @@ -356,15 +356,15 @@ then
fi

# Check that containerd is running
pidof docker-containerd > /dev/null 2>&1
pidof containerd > /dev/null 2>&1
RC=$?
if [ $RC -ne 0 ]
then
fatal_exit "Problem: containerd is not running"
fi

# Check that containers can be created successfully
sudo /usr/bin/docker run --rm -m 5m busybox date >/dev/null 2>&1
sudo /usr/bin/docker run --rm -m 6m busybox date >/dev/null 2>&1
RC=$?
if [ $RC -ne 0 ]
then
Expand Down

0 comments on commit 8788319

Please sign in to comment.