Fix CI E2E failures caused by Docker 29 on GitHub Actions runners#13706
Merged
Fix CI E2E failures caused by Docker 29 on GitHub Actions runners#13706
Conversation
Upgrade skywalking-infra-e2e to the branch that migrates deprecated APIs. Disable containerd image store on GitHub Actions runners to fix E2E test failures caused by compatibility issues with older Docker images. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
After disabling containerd snapshotter, the Docker daemon falls back to API v1.48 while the CLI and infra-e2e tool expect v1.51. Upgrading docker-ce and docker-ce-cli ensures the daemon supports the latest API. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Remove apt-get install which may downgrade Docker. Instead, after disabling containerd and restarting, export DOCKER_API_VERSION from the server's supported version so the Docker SDK client negotiates down. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The upgraded infra-e2e branch introduces regressions (stricter container exit handling). Revert to the old commit and rely on containerd disable + DOCKER_API_VERSION to fix Docker 29 API compatibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
kezhenxu94
approved these changes
Feb 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix CI E2E test failures caused by Docker 29 upgrade on GitHub Actions runners
GitHub Actions runners upgraded to Docker 29, which enables containerd image store by default. This causes two problems:
skywalking-infra-e2etool uses Docker SDK API v1.41, causingclient version 1.41 is too olderrors.This PR fixes both issues by:
containerd-snapshotter: false) in all Docker-related CI jobs, restoring the classic overlay2 storage driver and its default ulimits.DOCKER_API_VERSIONfrom the server's supported version so the Docker SDK client negotiates correctly after restart.Affected jobs:
docker(image build),e2e-test,e2e-test-istio,e2e-test-istio-ambient,e2e-test-java-versions.CHANGESlog.