Skip to content

Commit ae64c51

Browse files
committed
Remove containerd disable from e2e workflow
The infra-e2e update (8c21e43) handles Docker API version negotiation itself, so the containerd disable workaround is no longer needed here.
1 parent a780637 commit ae64c51

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

.github/workflows/e2e.yaml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,6 @@ jobs:
3737
- uses: actions/checkout@v2
3838
with:
3939
submodules: true
40-
- name: Disable containerd image store
41-
run: |
42-
DAEMON_JSON="/etc/docker/daemon.json"
43-
if [ -f "$DAEMON_JSON" ]; then
44-
sudo jq '. + {"features": {"containerd-snapshotter": false}}' "$DAEMON_JSON" \
45-
| sudo tee "${DAEMON_JSON}.tmp" > /dev/null
46-
sudo mv "${DAEMON_JSON}.tmp" "$DAEMON_JSON"
47-
else
48-
echo '{"features": {"containerd-snapshotter": false}}' \
49-
| sudo tee "$DAEMON_JSON" > /dev/null
50-
fi
51-
sudo systemctl restart docker
52-
docker version
53-
docker info
54-
echo "DOCKER_API_VERSION=$(docker version --format '{{.Server.APIVersion}}')" >> "$GITHUB_ENV"
5540
- uses: actions/setup-java@v2
5641
with:
5742
distribution: temurin

0 commit comments

Comments
 (0)