From 793b73880e77279f7aa2e3db9abf6baf0215ee5a Mon Sep 17 00:00:00 2001 From: Kenfe-Mickael Laventure Date: Thu, 13 Apr 2017 11:58:06 -0700 Subject: [PATCH] Update import path to use containerd/containerd instead of docker/docker Signed-off-by: Kenfe-Mickael Laventure --- Dockerfile | 8 ++++---- Makefile | 6 +++--- README.md | 2 +- api/grpc/server/server.go | 8 ++++---- api/grpc/server/server_linux.go | 6 +++--- api/grpc/server/server_solaris.go | 6 +++--- containerd-shim/main.go | 2 +- containerd-shim/process.go | 2 +- containerd/main.go | 10 +++++----- containerd/main_linux.go | 2 +- ctr/checkpoint_linux.go | 2 +- ctr/container.go | 4 ++-- ctr/events.go | 2 +- ctr/main.go | 4 ++-- ctr/sort.go | 2 +- docs/api.md | 2 +- hack/.vendor-helpers.sh | 2 +- hack/benchmark.go | 2 +- integration-test/bundle_utils_test.go | 2 +- integration-test/check_test.go | 4 ++-- integration-test/container_utils_test.go | 2 +- integration-test/events_test.go | 2 +- integration-test/exec_test.go | 2 +- integration-test/start_linux_test.go | 2 +- integration-test/start_solaris_test.go | 2 +- runtime/container.go | 2 +- runtime/container_linux.go | 2 +- runtime/container_solaris.go | 2 +- runtime/process.go | 2 +- runtime/runtime.go | 2 +- runtime/runtime_test.go | 2 +- supervisor/add_process.go | 4 ++-- supervisor/checkpoint.go | 2 +- supervisor/create.go | 2 +- supervisor/delete.go | 2 +- supervisor/exit.go | 2 +- supervisor/get_containers.go | 2 +- supervisor/monitor_linux.go | 4 ++-- supervisor/monitor_solaris.go | 2 +- supervisor/sort.go | 2 +- supervisor/sort_test.go | 4 ++-- supervisor/stats.go | 2 +- supervisor/supervisor.go | 2 +- supervisor/supervisor_test.go | 2 +- supervisor/task.go | 2 +- supervisor/update.go | 2 +- supervisor/worker.go | 2 +- 47 files changed, 69 insertions(+), 69 deletions(-) diff --git a/Dockerfile b/Dockerfile index 95210559..6c2e2823 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ RUN apt-get update && apt-get install -y \ ENV GO_VERSION 1.7.1 RUN curl -sSL "https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz" | tar -v -C /usr/local -xz ENV PATH /go/bin:/usr/local/go/bin:$PATH -ENV GOPATH /go:/go/src/github.com/docker/containerd/vendor +ENV GOPATH /go:/go/src/github.com/containerd/containerd/vendor ENV GO_TOOLS_COMMIT 823804e1ae08dbb14eb807afc7db9993bc9e3cc3 # Grab Go's cover tool for dead-simple code coverage testing @@ -37,7 +37,7 @@ RUN git clone https://github.com/golang/lint.git /go/src/github.com/golang/lint && (cd /go/src/github.com/golang/lint && git checkout -q $GO_LINT_COMMIT) \ && go install -v github.com/golang/lint/golint -WORKDIR /go/src/github.com/docker/containerd +WORKDIR /go/src/github.com/containerd/containerd # install seccomp: the version shipped in trusty is too old ENV SECCOMP_VERSION 2.3.1 @@ -63,8 +63,8 @@ RUN set -x \ && git checkout -q "$RUNC_COMMIT" \ && make BUILDTAGS="seccomp apparmor selinux" && make install -COPY . /go/src/github.com/docker/containerd +COPY . /go/src/github.com/containerd/containerd -WORKDIR /go/src/github.com/docker/containerd +WORKDIR /go/src/github.com/containerd/containerd RUN make all install diff --git a/Makefile b/Makefile index 4aec3f07..4d9c57d2 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ BUILDTAGS= -PROJECT=github.com/docker/containerd +PROJECT=github.com/containerd/containerd GIT_COMMIT := $(shell git rev-parse HEAD 2> /dev/null || true) GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2> /dev/null) -LDFLAGS := -X github.com/docker/containerd.GitCommit=${GIT_COMMIT} ${LDFLAGS} +LDFLAGS := -X github.com/containerd/containerd.GitCommit=${GIT_COMMIT} ${LDFLAGS} TEST_TIMEOUT ?= 5m TEST_SUITE_TIMEOUT ?= 10m @@ -91,7 +91,7 @@ test: validate install bundles-rootfs go test -bench=. -v $(shell go list ./... | grep -v /vendor | grep -v /integration-test ) -runtime=$(RUNTIME) ifneq ($(wildcard /.dockerenv), ) cd integration-test ; \ -go test -check.v -check.timeout=$(TEST_TIMEOUT) $(TESTFLAGS) timeout=$(TEST_SUITE_TIMEOUT) github.com/docker/containerd/integration-test +go test -check.v -check.timeout=$(TEST_TIMEOUT) $(TESTFLAGS) timeout=$(TEST_SUITE_TIMEOUT) github.com/containerd/containerd/integration-test endif bench: shim validate install bundles-rootfs diff --git a/README.md b/README.md index 6413bdc4..67419664 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ as checkpoint and restore for cloning and live migration of containers. ## Getting started -The easiest way to start using containerd is to download binaries from the [releases page](https://github.com/docker/containerd/releases). +The easiest way to start using containerd is to download binaries from the [releases page](https://github.com/containerd/containerd/releases). The included `ctr` command-line tool allows you interact with the containerd daemon: diff --git a/api/grpc/server/server.go b/api/grpc/server/server.go index f57a3570..6c9c5d30 100644 --- a/api/grpc/server/server.go +++ b/api/grpc/server/server.go @@ -13,10 +13,10 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/codes" - "github.com/docker/containerd" - "github.com/docker/containerd/api/grpc/types" - "github.com/docker/containerd/runtime" - "github.com/docker/containerd/supervisor" + "github.com/containerd/containerd" + "github.com/containerd/containerd/api/grpc/types" + "github.com/containerd/containerd/runtime" + "github.com/containerd/containerd/supervisor" "github.com/golang/protobuf/ptypes" "golang.org/x/net/context" ) diff --git a/api/grpc/server/server_linux.go b/api/grpc/server/server_linux.go index 9a7a6584..af6968d3 100644 --- a/api/grpc/server/server_linux.go +++ b/api/grpc/server/server_linux.go @@ -3,9 +3,9 @@ package server import ( "fmt" - "github.com/docker/containerd/api/grpc/types" - "github.com/docker/containerd/specs" - "github.com/docker/containerd/supervisor" + "github.com/containerd/containerd/api/grpc/types" + "github.com/containerd/containerd/specs" + "github.com/containerd/containerd/supervisor" "github.com/opencontainers/runc/libcontainer/system" ocs "github.com/opencontainers/runtime-spec/specs-go" "golang.org/x/net/context" diff --git a/api/grpc/server/server_solaris.go b/api/grpc/server/server_solaris.go index fb4b5ec8..5ad27343 100644 --- a/api/grpc/server/server_solaris.go +++ b/api/grpc/server/server_solaris.go @@ -3,9 +3,9 @@ package server import ( "fmt" - "github.com/docker/containerd/api/grpc/types" - "github.com/docker/containerd/specs" - "github.com/docker/containerd/supervisor" + "github.com/containerd/containerd/api/grpc/types" + "github.com/containerd/containerd/specs" + "github.com/containerd/containerd/supervisor" "golang.org/x/net/context" ) diff --git a/containerd-shim/main.go b/containerd-shim/main.go index b30c04bc..0456dbf2 100644 --- a/containerd-shim/main.go +++ b/containerd-shim/main.go @@ -9,7 +9,7 @@ import ( "runtime" "syscall" - "github.com/docker/containerd/osutils" + "github.com/containerd/containerd/osutils" "github.com/docker/docker/pkg/term" ) diff --git a/containerd-shim/process.go b/containerd-shim/process.go index 6c6630c1..6fb0a9b0 100644 --- a/containerd-shim/process.go +++ b/containerd-shim/process.go @@ -15,7 +15,7 @@ import ( "syscall" "time" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/specs" ) var errRuntime = errors.New("shim: runtime execution error") diff --git a/containerd/main.go b/containerd/main.go index 28dd52ae..0c78c16e 100644 --- a/containerd/main.go +++ b/containerd/main.go @@ -19,11 +19,11 @@ import ( "github.com/Sirupsen/logrus" "github.com/codegangsta/cli" "github.com/cyberdelia/go-metrics-graphite" - "github.com/docker/containerd" - grpcserver "github.com/docker/containerd/api/grpc/server" - "github.com/docker/containerd/api/grpc/types" - "github.com/docker/containerd/api/http/pprof" - "github.com/docker/containerd/supervisor" + "github.com/containerd/containerd" + grpcserver "github.com/containerd/containerd/api/grpc/server" + "github.com/containerd/containerd/api/grpc/types" + "github.com/containerd/containerd/api/http/pprof" + "github.com/containerd/containerd/supervisor" "github.com/docker/docker/pkg/listeners" "github.com/rcrowley/go-metrics" ) diff --git a/containerd/main_linux.go b/containerd/main_linux.go index 8ea0a4d2..c302d706 100644 --- a/containerd/main_linux.go +++ b/containerd/main_linux.go @@ -7,7 +7,7 @@ import ( "github.com/Sirupsen/logrus" "github.com/cloudfoundry/gosigar" - "github.com/docker/containerd/osutils" + "github.com/containerd/containerd/osutils" "github.com/rcrowley/go-metrics" ) diff --git a/ctr/checkpoint_linux.go b/ctr/checkpoint_linux.go index 71c0a047..c77518e3 100644 --- a/ctr/checkpoint_linux.go +++ b/ctr/checkpoint_linux.go @@ -6,7 +6,7 @@ import ( "text/tabwriter" "github.com/codegangsta/cli" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" netcontext "golang.org/x/net/context" ) diff --git a/ctr/container.go b/ctr/container.go index 7050b6f3..0d2869ef 100644 --- a/ctr/container.go +++ b/ctr/container.go @@ -17,8 +17,8 @@ import ( "time" "github.com/codegangsta/cli" - "github.com/docker/containerd/api/grpc/types" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/api/grpc/types" + "github.com/containerd/containerd/specs" "github.com/docker/docker/pkg/term" "github.com/golang/protobuf/ptypes" netcontext "golang.org/x/net/context" diff --git a/ctr/events.go b/ctr/events.go index d65cebf7..18db4658 100644 --- a/ctr/events.go +++ b/ctr/events.go @@ -7,7 +7,7 @@ import ( "time" "github.com/codegangsta/cli" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" "github.com/golang/protobuf/ptypes" netcontext "golang.org/x/net/context" ) diff --git a/ctr/main.go b/ctr/main.go index 85ed049c..93e1574d 100644 --- a/ctr/main.go +++ b/ctr/main.go @@ -9,8 +9,8 @@ import ( "github.com/Sirupsen/logrus" "github.com/codegangsta/cli" - "github.com/docker/containerd" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd" + "github.com/containerd/containerd/api/grpc/types" ) const usage = `High performance container daemon cli` diff --git a/ctr/sort.go b/ctr/sort.go index fbd090b8..5a1b55a7 100644 --- a/ctr/sort.go +++ b/ctr/sort.go @@ -3,7 +3,7 @@ package main import ( "sort" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" ) func sortContainers(c []*types.Container) { diff --git a/docs/api.md b/docs/api.md index 24336d37..fc8cc4d4 100644 --- a/docs/api.md +++ b/docs/api.md @@ -2,5 +2,5 @@ The API for containerd is with GRPC over a unix socket located at the default location of `/run/containerd/containerd.sock`. -At this time please refer to the [proto at](https://github.com/docker/containerd/blob/master/api/grpc/types/api.proto) for the API methods and types. +At this time please refer to the [proto at](https://github.com/containerd/containerd/blob/master/api/grpc/types/api.proto) for the API methods and types. There is a Go implementation and types checked into this repository but alternate language implementations can be created using the grpc and protoc toolchain. diff --git a/hack/.vendor-helpers.sh b/hack/.vendor-helpers.sh index c2ee5eff..75615522 100755 --- a/hack/.vendor-helpers.sh +++ b/hack/.vendor-helpers.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -PROJECT=github.com/docker/containerd +PROJECT=github.com/containerd/containerd # Downloads dependencies into vendor/ directory mkdir -p vendor diff --git a/hack/benchmark.go b/hack/benchmark.go index aa537de4..e778f2f3 100644 --- a/hack/benchmark.go +++ b/hack/benchmark.go @@ -11,7 +11,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" netcontext "golang.org/x/net/context" "google.golang.org/grpc" ) diff --git a/integration-test/bundle_utils_test.go b/integration-test/bundle_utils_test.go index 3a5da972..0a9ea5fe 100644 --- a/integration-test/bundle_utils_test.go +++ b/integration-test/bundle_utils_test.go @@ -9,7 +9,7 @@ import ( "reflect" "runtime" - utils "github.com/docker/containerd/testutils" + utils "github.com/containerd/containerd/testutils" ocs "github.com/opencontainers/runtime-spec/specs-go" ) diff --git a/integration-test/check_test.go b/integration-test/check_test.go index 044f5b37..d4529421 100644 --- a/integration-test/check_test.go +++ b/integration-test/check_test.go @@ -19,8 +19,8 @@ import ( "google.golang.org/grpc/grpclog" "google.golang.org/grpc/health/grpc_health_v1" - "github.com/docker/containerd/api/grpc/types" - utils "github.com/docker/containerd/testutils" + "github.com/containerd/containerd/api/grpc/types" + utils "github.com/containerd/containerd/testutils" "github.com/go-check/check" "github.com/golang/protobuf/ptypes/timestamp" ) diff --git a/integration-test/container_utils_test.go b/integration-test/container_utils_test.go index 1ba27362..943e18db 100644 --- a/integration-test/container_utils_test.go +++ b/integration-test/container_utils_test.go @@ -11,7 +11,7 @@ import ( "syscall" "time" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" "github.com/golang/protobuf/ptypes" "github.com/golang/protobuf/ptypes/timestamp" "golang.org/x/net/context" diff --git a/integration-test/events_test.go b/integration-test/events_test.go index c8db4069..0b5e40c2 100644 --- a/integration-test/events_test.go +++ b/integration-test/events_test.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" "github.com/docker/docker/pkg/integration/checker" "github.com/go-check/check" ) diff --git a/integration-test/exec_test.go b/integration-test/exec_test.go index 85279ba2..23021e5e 100644 --- a/integration-test/exec_test.go +++ b/integration-test/exec_test.go @@ -7,7 +7,7 @@ import ( "syscall" "time" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" "github.com/docker/docker/pkg/integration/checker" "github.com/go-check/check" ) diff --git a/integration-test/start_linux_test.go b/integration-test/start_linux_test.go index 51757d8b..9fab3762 100644 --- a/integration-test/start_linux_test.go +++ b/integration-test/start_linux_test.go @@ -8,7 +8,7 @@ import ( "syscall" "time" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" "github.com/docker/docker/pkg/integration/checker" "github.com/go-check/check" ocs "github.com/opencontainers/runtime-spec/specs-go" diff --git a/integration-test/start_solaris_test.go b/integration-test/start_solaris_test.go index 1ca20680..cd243ffb 100644 --- a/integration-test/start_solaris_test.go +++ b/integration-test/start_solaris_test.go @@ -5,7 +5,7 @@ import ( "syscall" "time" - "github.com/docker/containerd/api/grpc/types" + "github.com/containerd/containerd/api/grpc/types" "github.com/docker/docker/pkg/integration/checker" "github.com/go-check/check" "google.golang.org/grpc" diff --git a/runtime/container.go b/runtime/container.go index 2e9e663a..cb86efaf 100644 --- a/runtime/container.go +++ b/runtime/container.go @@ -13,7 +13,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/specs" ocs "github.com/opencontainers/runtime-spec/specs-go" "golang.org/x/net/context" "golang.org/x/sys/unix" diff --git a/runtime/container_linux.go b/runtime/container_linux.go index 1243476a..6eb013ae 100644 --- a/runtime/container_linux.go +++ b/runtime/container_linux.go @@ -11,7 +11,7 @@ import ( "strings" "syscall" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/specs" ocs "github.com/opencontainers/runtime-spec/specs-go" ) diff --git a/runtime/container_solaris.go b/runtime/container_solaris.go index 7af26c4e..7d9c5385 100644 --- a/runtime/container_solaris.go +++ b/runtime/container_solaris.go @@ -7,7 +7,7 @@ import ( "os/exec" "strings" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/specs" ocs "github.com/opencontainers/runtime-spec/specs-go" ) diff --git a/runtime/process.go b/runtime/process.go index bc36e058..7ce32f2b 100644 --- a/runtime/process.go +++ b/runtime/process.go @@ -15,7 +15,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/specs" "golang.org/x/sys/unix" ) diff --git a/runtime/runtime.go b/runtime/runtime.go index a43c17e3..e1f520da 100644 --- a/runtime/runtime.go +++ b/runtime/runtime.go @@ -4,7 +4,7 @@ import ( "errors" "time" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/specs" ) var ( diff --git a/runtime/runtime_test.go b/runtime/runtime_test.go index a89beb49..83e2e83b 100644 --- a/runtime/runtime_test.go +++ b/runtime/runtime_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - utils "github.com/docker/containerd/testutils" + utils "github.com/containerd/containerd/testutils" ) var ( diff --git a/supervisor/add_process.go b/supervisor/add_process.go index c4969e87..6c56b82e 100644 --- a/supervisor/add_process.go +++ b/supervisor/add_process.go @@ -4,8 +4,8 @@ import ( "os" "time" - "github.com/docker/containerd/runtime" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/runtime" + "github.com/containerd/containerd/specs" "golang.org/x/net/context" ) diff --git a/supervisor/checkpoint.go b/supervisor/checkpoint.go index 394f9666..ce05aeae 100644 --- a/supervisor/checkpoint.go +++ b/supervisor/checkpoint.go @@ -2,7 +2,7 @@ package supervisor -import "github.com/docker/containerd/runtime" +import "github.com/containerd/containerd/runtime" // CreateCheckpointTask holds needed parameters to create a new checkpoint type CreateCheckpointTask struct { diff --git a/supervisor/create.go b/supervisor/create.go index c78f1001..3e782c62 100644 --- a/supervisor/create.go +++ b/supervisor/create.go @@ -4,7 +4,7 @@ import ( "path/filepath" "time" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" "golang.org/x/net/context" ) diff --git a/supervisor/delete.go b/supervisor/delete.go index a76ace65..94b0b7ca 100644 --- a/supervisor/delete.go +++ b/supervisor/delete.go @@ -4,7 +4,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) // DeleteTask holds needed parameters to remove a container diff --git a/supervisor/exit.go b/supervisor/exit.go index 6df5fd5a..9977c186 100644 --- a/supervisor/exit.go +++ b/supervisor/exit.go @@ -4,7 +4,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) // ExitTask holds needed parameters to execute the exit task diff --git a/supervisor/get_containers.go b/supervisor/get_containers.go index 4d9c6681..528c02fa 100644 --- a/supervisor/get_containers.go +++ b/supervisor/get_containers.go @@ -1,6 +1,6 @@ package supervisor -import "github.com/docker/containerd/runtime" +import "github.com/containerd/containerd/runtime" // GetContainersTask holds needed parameters to retrieve a list of // containers diff --git a/supervisor/monitor_linux.go b/supervisor/monitor_linux.go index b1026bfd..51438ffd 100644 --- a/supervisor/monitor_linux.go +++ b/supervisor/monitor_linux.go @@ -5,8 +5,8 @@ import ( "syscall" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/archutils" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/archutils" + "github.com/containerd/containerd/runtime" ) // NewMonitor starts a new process monitor and returns it diff --git a/supervisor/monitor_solaris.go b/supervisor/monitor_solaris.go index ade049d2..5b6b18e7 100644 --- a/supervisor/monitor_solaris.go +++ b/supervisor/monitor_solaris.go @@ -38,7 +38,7 @@ import ( "unsafe" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) // NewMonitor starts a new process monitor and returns it diff --git a/supervisor/sort.go b/supervisor/sort.go index 925041f4..35ccce13 100644 --- a/supervisor/sort.go +++ b/supervisor/sort.go @@ -3,7 +3,7 @@ package supervisor import ( "sort" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) func sortProcesses(p []runtime.Process) { diff --git a/supervisor/sort_test.go b/supervisor/sort_test.go index 9a0467cf..c34271f5 100644 --- a/supervisor/sort_test.go +++ b/supervisor/sort_test.go @@ -6,8 +6,8 @@ import ( "sort" "testing" - "github.com/docker/containerd/runtime" - "github.com/docker/containerd/specs" + "github.com/containerd/containerd/runtime" + "github.com/containerd/containerd/specs" ) var ( diff --git a/supervisor/stats.go b/supervisor/stats.go index cc169ad4..baeae256 100644 --- a/supervisor/stats.go +++ b/supervisor/stats.go @@ -3,7 +3,7 @@ package supervisor import ( "time" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) // StatsTask holds needed parameters to retrieve a container statistics diff --git a/supervisor/supervisor.go b/supervisor/supervisor.go index a6700b1e..4d43c6b3 100644 --- a/supervisor/supervisor.go +++ b/supervisor/supervisor.go @@ -10,7 +10,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) const ( diff --git a/supervisor/supervisor_test.go b/supervisor/supervisor_test.go index f30ed13c..b2b0286f 100644 --- a/supervisor/supervisor_test.go +++ b/supervisor/supervisor_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) func TestEventLogCompat(t *testing.T) { diff --git a/supervisor/task.go b/supervisor/task.go index a9b195be..4980a357 100644 --- a/supervisor/task.go +++ b/supervisor/task.go @@ -3,7 +3,7 @@ package supervisor import ( "sync" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) // StartResponse is the response containing a started container diff --git a/supervisor/update.go b/supervisor/update.go index f86a6480..6ee4ff77 100644 --- a/supervisor/update.go +++ b/supervisor/update.go @@ -3,7 +3,7 @@ package supervisor import ( "time" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" ) // UpdateTask holds needed parameters to update a container resource constraints diff --git a/supervisor/worker.go b/supervisor/worker.go index 242c5e94..652cd62c 100644 --- a/supervisor/worker.go +++ b/supervisor/worker.go @@ -5,7 +5,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "github.com/docker/containerd/runtime" + "github.com/containerd/containerd/runtime" "golang.org/x/net/context" )