From 0ee2987e179ea238a56dcae810faa3457fc051f3 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Fri, 15 Apr 2022 12:27:22 -0700 Subject: [PATCH] enable kubernetes and podman connection drivers Signed-off-by: Andrea Luzzardi --- client/client.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/client.go b/client/client.go index 8efb7023..6bfbc324 100644 --- a/client/client.go +++ b/client/client.go @@ -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"