fix(bulker): pull the minio test container from quay, pinned - #1520
Merged
Merged
Conversation
`Bulker Test (app)` fails on every branch that actually runs it:
panic: create container: Error response from daemon: pull access denied for
minio/minio, repository does not exist or may require 'docker login'
`docker.io/minio/minio` is no longer publicly pullable — an anonymous pull token
is rejected with UNAUTHORIZED and Docker Hub has no public record of the repo.
Docker's "repository does not exist or may require 'docker login'" is its generic
message for an unresolvable reference, so this is not rate limiting and adding
registry credentials would not have fixed it. Reproduced locally with the same
error.
MinIO also publish to quay.io, which is public. Pinned to
RELEASE.2025-09-07T16-13-09Z rather than a floating tag: it is multi-arch
(amd64/arm64/ppc64le) and its manifest list is currently byte-identical to quay's
:latest, so pinning costs nothing today and keeps the tests runnable on Apple
Silicon.
The unpinned `:latest` is why this broke with no commit in the repo and stayed
hidden for six days: the bulker shard skips whenever a PR does not touch
`bulker/`, reporting "pass" in 11s, and nothing between 9 and 15 Sep touched it.
The JITSU-163 PRs were the first to run the suite again, and merging #1503 turned
newjitsu red.
Unblocks #1504, #1506, #1508 and the default branch.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
absorbb
approved these changes
Sep 15, 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.
Bulker Test (app)fails on every branch that actually runs it, andnewjitsuis currently red for the same reason.Cause
docker.io/minio/miniois no longer publicly pullable. An anonymous pull token fromauth.docker.iois rejected withUNAUTHORIZED, and Docker Hub's API has no public record of the repository. Docker's "repository does not exist or may require 'docker login'" is its generic message for an unresolvable reference — so this is not rate limiting, and adding registry credentials would not have fixed it.Reproduced locally with the identical error:
Fix
MinIO also publish to quay.io, which is public. One line in
minio_container.go.Pinned to
RELEASE.2025-09-07T16-13-09Zrather than a floating tag. That tag is multi-arch (amd64 / arm64 / ppc64le) and its manifest list is currently byte-identical to quay's:latest, so pinning costs nothing today and keeps the tests runnable on Apple Silicon. Both verified by pulling:There is precedent for quay in the tree —
docker/docker-compose.yml:288pulls Keycloak from it.Why this went unnoticed for six days
The unpinned
:latestmeant the break needed no commit in this repo. And the bulker shard skips whenever a PR does not touchbulker/, reportingpassin ~11s — a real run takes 4-5 minutes. Recent merges (#1502, #1507, #1509, #1510) all showBulker Test (app): passat 11s; none of them touchedbulker/.The last real run was #1503 on 9 September. The JITSU-163 PRs were the first to exercise the suite since, which is why they surfaced it — and merging #1503 turned
newjitsured.Worth considering separately: a scheduled run of the full suite on
newjitsuwould have caught this within a day instead of six.Verification
CI on this PR is the real test — it runs the exact job that is failing. Locally the image now pulls natively on both architectures, and the previous reference reproduces the CI failure exactly.
Unblocks #1504, #1506, #1508 and the default branch.
🤖 Generated with Claude Code