-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ssh: agent support is incompatible with OpenSSH >= 8.9 (ssh: parse error in message type 27
)
#3273
Labels
Comments
This was referenced Nov 11, 2022
What's in v0.10.5 that breaks this? |
Not a regression in v0.10.5.
|
Noticed that my English usage of "as of" was wrong 🙇 I meant I just tested v0.10.5 |
This was referenced Nov 15, 2022
thaJeztah
added a commit
to thaJeztah/cli
that referenced
this issue
Nov 16, 2022
- fixes compatibility with OpenSSH >= 8.9 (moby/buildkit#3273) - relates to golang/go#51689 (comment) full diff: golang/crypto@3147a52...v0.1.0 Signed-off-by: Sebastiaan van Stijn <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As of BuildKit v0.10.5,
buildctl build --ssh default=$SSH_AUTH_SOCK
seems incompatible with OpenSSH 8.9 (https://www.openssh.com/agent-restrict.html).Any ssh-enabled command such as
RUN --mount=type=ssh ssh [email protected]
fails withssh: parse error in message type 27
in the--debug
log.Tried to bump up(EDIT: just forgot to runx/crypto
to v0.2.0, but no success; Thessh: parse error in message type 27
error disappears after bumping upx/crypto
, but the ssh command still fails with[email protected]: Permission denied (publickey).
ssh-add
)Initially reported by several people in golang/go#51689 (comment)
This issue does not affect the non-agent mode (
--ssh default=$HOME/.ssh/id_rsa
)The text was updated successfully, but these errors were encountered: