Skip to content

Commit 025ffe5

Browse files
committed
Rename kubernetes-incubator/cri-containerd to containerd/cri-containerd.
Signed-off-by: Lantao Liu <lantaol@google.com>
1 parent 5bfa5e4 commit 025ffe5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+112
-112
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ GO := go
1616
GOOS := $(shell $(GO) env GOOS)
1717
GOARCH := $(shell $(GO) env GOARCH)
1818
EPOCH_TEST_COMMIT := f9e02affccd51702191e5312665a16045ffef8ab
19-
PROJECT := github.com/kubernetes-incubator/cri-containerd
19+
PROJECT := github.com/containerd/cri-containerd
2020
BINDIR := ${DESTDIR}/usr/local/bin
2121
BUILD_DIR := _output
2222
# VERSION is derived from the current tag for HEAD plus amends. Version is used

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<img src="https://github.com/containerd/containerd/blob/master/docs/images/containerd-dark.png" width="200" >
55
</p>
66

7-
[![Build Status](https://api.travis-ci.org/kubernetes-incubator/cri-containerd.svg?style=flat-square)](https://travis-ci.org/kubernetes-incubator/cri-containerd)
8-
[![Go Report Card](https://goreportcard.com/badge/github.com/kubernetes-incubator/cri-containerd?style=flat-square)](https://goreportcard.com/report/github.com/kubernetes-incubator/cri-containerd)
7+
[![Build Status](https://api.travis-ci.org/containerd/cri-containerd.svg?style=flat-square)](https://travis-ci.org/containerd/cri-containerd)
8+
[![Go Report Card](https://goreportcard.com/badge/github.com/containerd/cri-containerd?style=flat-square)](https://goreportcard.com/report/github.com/containerd/cri-containerd)
99

1010
`cri-containerd` is a [containerd](https://containerd.io/) based implementation of Kubernetes [container runtime interface (CRI)](https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/apis/cri/v1alpha1/runtime/api.proto).
1111

cmd/cri-containerd/cri_containerd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ import (
3333
"github.com/spf13/cobra"
3434
"k8s.io/kubernetes/pkg/util/interrupt"
3535

36-
"github.com/kubernetes-incubator/cri-containerd/cmd/cri-containerd/options"
37-
"github.com/kubernetes-incubator/cri-containerd/pkg/server"
38-
"github.com/kubernetes-incubator/cri-containerd/pkg/version"
36+
"github.com/containerd/cri-containerd/cmd/cri-containerd/options"
37+
"github.com/containerd/cri-containerd/pkg/server"
38+
"github.com/containerd/cri-containerd/pkg/version"
3939
)
4040

4141
// Add \u200B to avoid the space trimming.

cmd/cri-containerd/load.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ import (
2525
"github.com/spf13/cobra"
2626
"golang.org/x/net/context"
2727

28-
"github.com/kubernetes-incubator/cri-containerd/cmd/cri-containerd/options"
29-
api "github.com/kubernetes-incubator/cri-containerd/pkg/api/v1"
30-
"github.com/kubernetes-incubator/cri-containerd/pkg/client"
28+
"github.com/containerd/cri-containerd/cmd/cri-containerd/options"
29+
api "github.com/containerd/cri-containerd/pkg/api/v1"
30+
"github.com/containerd/cri-containerd/pkg/client"
3131
)
3232

3333
func dedent(s string) string {

contrib/ansible/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $ cat hosts
2626
## Step 1:
2727
At this point, the ansible playbook should be able to ssh into the machines in the hosts file.
2828
```console
29-
git clone https://github.com/kubernetes-incubator/cri-containerd
29+
git clone https://github.com/containerd/cri-containerd
3030
cd ./cri-containerd/contrib/ansible
3131
ansible-playbook -i hosts cri-containerd.yaml
3232
```

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ If you have other requirements for the binaries, e.g. selinux support, another a
6161
### Download
6262

6363
The release tarball could be downloaded from either of the following sources:
64-
1. Release on github (see [here](https://github.com/kubernetes-incubator/cri-containerd/releases));
64+
1. Release on github (see [here](https://github.com/containerd/cri-containerd/releases));
6565
2. Release GCS bucket https://storage.googleapis.com/cri-containerd-release/.
6666

6767
## Step 0: Install Dependent Libraries

integration/image_load_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"github.com/stretchr/testify/require"
2828
"k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
2929

30-
api "github.com/kubernetes-incubator/cri-containerd/pkg/api/v1"
30+
api "github.com/containerd/cri-containerd/pkg/api/v1"
3131
)
3232

3333
// Test to load an image from tarball.

integration/test_utils.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ import (
2828
"k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
2929
"k8s.io/kubernetes/pkg/kubelet/remote"
3030

31-
api "github.com/kubernetes-incubator/cri-containerd/pkg/api/v1"
32-
"github.com/kubernetes-incubator/cri-containerd/pkg/client"
33-
"github.com/kubernetes-incubator/cri-containerd/pkg/util"
31+
api "github.com/containerd/cri-containerd/pkg/api/v1"
32+
"github.com/containerd/cri-containerd/pkg/client"
33+
"github.com/containerd/cri-containerd/pkg/util"
3434
)
3535

3636
const (

integration/truncindex_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func TestTruncIndex(t *testing.T) {
4848
// if you add n images at least two will share the same leading digit.
4949
// "sha256:n" where n is the a number from 0-9 where two images have the same trunc,
5050
// for example sha256:9
51-
// https://github.com/kubernetes-incubator/cri-containerd/pull/352
51+
// https://github.com/containerd/cri-containerd/pull/352
5252
// I am thinking how I get the two image which have same trunc.
5353

5454
// TODO(yanxuean): add test case for ListImages

pkg/client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"google.golang.org/grpc"
2424
"k8s.io/kubernetes/pkg/kubelet/util"
2525

26-
api "github.com/kubernetes-incubator/cri-containerd/pkg/api/v1"
26+
api "github.com/containerd/cri-containerd/pkg/api/v1"
2727
)
2828

2929
// NewCRIContainerdClient creates grpc client of cri-containerd

0 commit comments

Comments
 (0)