Docker credential helper: emit not-found error on stdout#2059
Merged
Conversation
The docker credential-helper protocol requires the "credentials not found in native keychain" sentinel on stdout; clients (docker/podman) match it there to recognise "no stored credential". Writing it to stderr left stdout empty, so podman treated the exit 1 as a fatal "error getting credentials" and aborted login on podman workers using the credential helper. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
APErebus
approved these changes
Jul 3, 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.
Summary
The
docker-credential-octopus(the credential helper added in #1981) wrote its"credentials not found in native keychain" error message to stderr.
The docker credential-helper protocol actually requires it on stdout - clients such as
podman match that exact string to recognise the "no stored credential yet" case.
When using podman (via the
podman-dockershim), podman probes the helperwith
getatlogintime. With the error message on stderr & stdout empty,podman treated the exit-1 as a fatal error.
Relates to OctopusDeploy/Issues#10128.
Results
This PR moves the error message to stdout, matching the reference
docker-credential-helpersServebehaviour.Testing: this has been verified to work on podman 4.9.3, but AFAICT, requires podman 4.x (based on the v4.0.0 tag referenced here). This does not work on podman 3.4.4 (the version referenced in the issue above).
Server change
No — helper output stream only, no server-side change required.