[test-util] Pull the MinIO test image from quay.io - #9780
Closed
LuciferYang wants to merge 1 commit into
Closed
Conversation
The Docker Hub minio/minio repository is no longer available, so every container test that starts MinioTestContainer now fails at startup with "Status 404: pull access denied for minio/minio, repository does not exist or may require 'docker login'". MinIO's own quay.io registry still serves the same RELEASE.2022-02-07T08-17-33Z tag publicly, so qualifying the image name restores the pull without changing the version.
LuciferYang
force-pushed
the
fix/minio-image-quay
branch
from
September 13, 2026 04:03
e482ef2 to
99824c8
Compare
Contributor
Author
|
@JingsongLi We should probably fix this issue first. |
Contributor
|
Seems this PR duplicates #9761 |
Contributor
Author
ok, close this one. |
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.
Purpose
Every container test that starts
MinioTestContainernow fails before the test body runs:MinIO stopped publishing its Community Edition images and the Docker Hub
minio/miniorepository is gone, so the unqualified name no longer resolves. Re-running does not help.paimon-s3-implfails inS3FileIOTest, which means any PR whose reactor reaches that module goes red: apaimon-commonchange now fails CI for a reason that has nothing to do with it.MinIO's own quay.io registry still serves the same
RELEASE.2022-02-07T08-17-33Ztag publicly, so qualifying the name is enough to restore the pull. It is the same image at the same version, so its license is unchanged; only the registry differs.quay.io/minio/miniois MinIO's own organization namespace, and several ASF projects already pull it from there, among themapache/iceberg,apache/hudi,apache/dorisandapache/opendal.DockerImageVersions.MINIOis the only place the image is named.paimon-s3,paimon-s3-implandpaimon-flink-cdcreach it throughMinioTestContainer.Tests
The quay.io tag is anonymously pullable (its registry manifest returns 200) while Docker Hub returns 404 for the same tag.
paimon-test-utilsandpaimon-s3-implcompile, with checkstyle and spotless clean. I have no Docker locally, so CI covers the container startup itself.