commit
0c747f4276
|
@ -123,6 +123,7 @@ disabled_plugins = ["cri"]
|
||||||
|
|
||||||
buildkitdArgs := []string{"buildkitd",
|
buildkitdArgs := []string{"buildkitd",
|
||||||
"--oci-worker=false",
|
"--oci-worker=false",
|
||||||
|
"--containerd-worker-gc=false",
|
||||||
"--containerd-worker=true",
|
"--containerd-worker=true",
|
||||||
"--containerd-worker-addr", address,
|
"--containerd-worker-addr", address,
|
||||||
"--containerd-worker-labels=org.mobyproject.buildkit.worker.sandbox=true", // Include use of --containerd-worker-labels to trigger https://github.com/moby/buildkit/pull/603
|
"--containerd-worker-labels=org.mobyproject.buildkit.worker.sandbox=true", // Include use of --containerd-worker-labels to trigger https://github.com/moby/buildkit/pull/603
|
||||||
|
|
|
@ -60,7 +60,7 @@ func (s *oci) New(opt ...SandboxOpt) (Sandbox, func() error, error) {
|
||||||
}
|
}
|
||||||
logs := map[string]*bytes.Buffer{}
|
logs := map[string]*bytes.Buffer{}
|
||||||
// Include use of --oci-worker-labels to trigger https://github.com/moby/buildkit/pull/603
|
// Include use of --oci-worker-labels to trigger https://github.com/moby/buildkit/pull/603
|
||||||
buildkitdArgs := []string{"buildkitd", "--oci-worker=true", "--containerd-worker=false", "--oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true"}
|
buildkitdArgs := []string{"buildkitd", "--oci-worker=true", "--containerd-worker=false", "--oci-worker-gc=false", "--oci-worker-labels=org.mobyproject.buildkit.worker.sandbox=true"}
|
||||||
|
|
||||||
deferF := &multiCloser{}
|
deferF := &multiCloser{}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue