-
Notifications
You must be signed in to change notification settings - Fork 503
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
Remote driver connhelpers #1134
Conversation
12bb4bc
to
447be8b
Compare
Yes, include the k8s one too. |
447be8b
to
96eccab
Compare
@@ -5,8 +5,8 @@ go 1.17 | |||
require ( | |||
github.com/compose-spec/compose-go v1.2.4 | |||
github.com/containerd/console v1.0.3 | |||
github.com/containerd/containerd v1.6.3-0.20220401172941-5ff8fce1fcc6 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure this change is needed in this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
buildkit master has updated to containerd v1.6.4, I think that's why this gets bumped? https://github.com/moby/buildkit/blob/master/go.mod#L11
a25e86b
to
3ff06ba
Compare
Update modules: go mod edit -require github.com/moby/buildkit@master go mod tidy -compat=1.17 && ./hack/update-vendor Signed-off-by: Justin Chadwell <[email protected]>
3ff06ba
to
1406ff1
Compare
Signed-off-by: Justin Chadwell <[email protected]>
Signed-off-by: Justin Chadwell <[email protected]>
This patch pulls in the
ssh
anddocker-container
connhelpers from buildkit to allow connections overssh
and to manageddocker-containers
.I was thinking we pull in at least the
docker-container
andssh
helpers, and maybe thekubepod
one?I've also attempted to update the buildkit dependency to pull in moby/buildkit#2843 - though in doing so that's also bumped some other things, so not entirely sure whether that's the right way to go.