-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
CAPD does not work when compiled with Go 1.20.6 #9037
Comments
/triage accepted |
/reopen Let's use this to track the upcoming release of v24.0.5 and to ensure it gets cherry-picked to relevant branches. |
@killianmuldoon: Reopened this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Certainly release-1.4 and release-1.5 - not sure what the status of release-1.3 as the last release on the 1.3 branch will likely be before the docker release. @sbueringer thoughts? |
I would cherry-pick as long as we still can. Better have a v1.3 version out that still works for a bit (until something else breaks :D) |
This is a client-side issue. |
Only commenting to clarify, it doesn't matter if someone updates docker on the host or not. It is entirely an issue with Go and the docker client lib. Bumping the client lib to what's in the (currently) unreleased branch should take care of it. |
Thank you very much. Then I misinterpreted what I saw locally. I just checked and apparently Go was updated to 1.20.6 on my machine on 14th July. I assume the rebuild in Tilt then built the CAPD manager with my locally Go version and that's how this issue suddenly surfaced Running cmd: cd test/infrastructure/docker;mkdir -p .tiltbuild/bin;CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -gcflags 'all=-N -l' -ldflags '-extldflags "-static"' -o .tiltbuild/bin/manager main.go When I pin to Go 1.20.5 (without the Docker bump) everthing still works. |
/assign |
I had a Docker update on 13.07 which updated to Docker 24.0.4. I realized today that CAPD doesn't work anymore with that
Basically the exec is broken:
I found some similar reports:
I would suggest like described there to bump to github.com/docker/docker v24.0.5-0.20230714235725-36e9e796c6fc+incompatible to fix the issue.
I think it would be also good to backport this to all release branches. Otherwise I would expect that CAPD will just stop working as soon as folks update Docker.
As soon as Docker v24.0.5 is released we should bump to the release
The text was updated successfully, but these errors were encountered: