Merge pull request #2211 from aluzzardi/connection-drivers

enable kubernetes and podman connection drivers
This commit is contained in:
Andrea Luzzardi 2022-04-15 12:34:28 -07:00 committed by GitHub
commit 069227e30c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,10 @@ import (
// buildkit
bk "github.com/moby/buildkit/client"
_ "github.com/moby/buildkit/client/connhelper/dockercontainer" // import the container connection driver
_ "github.com/moby/buildkit/client/connhelper/dockercontainer" // import the docker connection driver
_ "github.com/moby/buildkit/client/connhelper/kubepod" // import the kubernetes connection driver
_ "github.com/moby/buildkit/client/connhelper/podmancontainer" // import the podman connection driver
bkgw "github.com/moby/buildkit/frontend/gateway/client"
"github.com/moby/buildkit/session"