Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit 9f39e32

Browse files
authored
Merge pull request #919 from Random-Liu/update-cri-tools
Update cri-tools to 98eea54af789ae13edce79cba101fb9ac8e7b241.
2 parents 31a960f + 3de8c8b commit 9f39e32

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ make BUILD_TAGS='seccomp apparmor'
101101
| selinux | selinux process and mount labeling | <none> |
102102
| apparmor | apparmor profile support | <none> |
103103
### Validate Your `cri` Setup
104-
A Kubernetes incubator project called [cri-tools](https://github.com/kubernetes-incubator/cri-tools)
104+
A Kubernetes incubator project called [cri-tools](https://github.com/kubernetes-sigs/cri-tools)
105105
includes programs for exercising CRI implementations such as the `cri` plugin.
106106
More importantly, cri-tools includes the program `critest` which is used for running
107107
[CRI Validation Testing](https://github.com/kubernetes/community/blob/master/contributors/devel/cri-validation.md).

docs/crictl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,5 +196,5 @@ $ crictl info
196196
}
197197
```
198198
## More Information
199-
See [here](https://github.com/kubernetes-incubator/cri-tools/blob/master/docs/crictl.md)
199+
See [here](https://github.com/kubernetes-sigs/cri-tools/blob/master/docs/crictl.md)
200200
for information about crictl.

docs/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ As shown below, the release tarball contains:
1111
1) `containerd`, `containerd-shim`, `containerd-stress`, `containerd-release`, `ctr`: binaries for containerd.
1212
2) `runc`: runc binary.
1313
3) `crictl`, `crictl.yaml`: command line tools for CRI container runtime and its config file.
14-
4) `critest`: binary to run [CRI validation test](https://github.com/kubernetes-incubator/cri-tools/blob/master/docs/validation.md).
14+
4) `critest`: binary to run [CRI validation test](https://github.com/kubernetes-sigs/cri-tools/blob/master/docs/validation.md).
1515
5) `containerd.service`: Systemd unit for containerd.
1616
6) `/opt/containerd/cluster/`: scripts for `kube-up.sh`.
1717
```console

docs/proposal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Containerd plans to provide [image filesystem metrics](https://github.com/contai
7676
CRI image filesystem metrics needs to be defined ([#33048](https://github.com/kubernetes/kubernetes/issues/33048)). After that, we should make sure containerd provides the required metrics, and CRI-containerd should translate containerd image filesystem metrics into CRI image filesystem metrics.
7777
### Out of Scope
7878
Following items are out of the scope of this design, we may address them in future version as enhancement or optimization.
79-
* **Debuggability**: One of the biggest concern of CRI-containerd is debuggability. We should provide equivalent debuggability with Docker CLI through `kubectl`, [`cri-tools`](https://github.com/kubernetes-incubator/cri-tools) or containerd CLI.
79+
* **Debuggability**: One of the biggest concern of CRI-containerd is debuggability. We should provide equivalent debuggability with Docker CLI through `kubectl`, [`cri-tools`](https://github.com/kubernetes-sigs/cri-tools) or containerd CLI.
8080
* **Built-in CRI support**: The [plugin model](https://github.com/containerd/containerd/blob/master/design/plugins.md) provided by containerd makes it possible to directly build CRI support into containerd as a plugin, which will eliminate one more hop from the stack. But because of the [limitation of golang plugin](https://github.com/containerd/containerd/issues/563), we have to either maintain our own branch or push CRI plugin upstream.
8181
* **Seccomp**: ([#36997](https://github.com/kubernetes/kubernetes/issues/36997)) Seccomp is supported in OCI runtime spec. However, current seccomp implementation in Kubernetes is experimental and docker specific, the api needs to be defined in CRI first before CRI-containerd implements it.
8282
* **Streaming server authentication**: ([#36666](https://github.com/kubernetes/kubernetes/issues/36666)) CRI-containerd will be out-of-process with Kubelet, so it could not reuse Kubelet authentication. Its streaming server should implement its own authentication mechanism.

docs/testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ make test-cri
4242
```bash
4343
make test-cri FOCUS=REGEXP_TO_FOCUS SKIP=REGEXP_TO_SKIP
4444
```
45-
[More information](https://github.com/kubernetes-incubator/cri-tools) about CRI validation test.
45+
[More information](https://github.com/kubernetes-sigs/cri-tools) about CRI validation test.
4646
## Node E2E Test
4747
[Node e2e test](https://github.com/kubernetes/community/blob/master/contributors/devel/e2e-node-tests.md) is a test framework testing Kubernetes node level functionalities such as managing pods, mounting volumes etc. It starts a local cluster with Kubelet and a few other minimum dependencies, and runs node functionality tests against the local cluster.
4848
* [Install dependencies](../README.md#install-dependencies).

hack/utils.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"/..
1818

1919
# Not from vendor.conf.
20-
CRITOOL_VERSION=v1.11.0
21-
CRITOOL_PKG=github.com/kubernetes-incubator/cri-tools
22-
CRITOOL_REPO=github.com/kubernetes-incubator/cri-tools
20+
CRITOOL_VERSION=98eea54af789ae13edce79cba101fb9ac8e7b241
21+
CRITOOL_PKG=github.com/kubernetes-sigs/cri-tools
22+
CRITOOL_REPO=github.com/kubernetes-sigs/cri-tools
2323

2424
# VENDOR is the path to vendor.conf.
2525
VENDOR=${VENDOR:-"${ROOT}/vendor.conf"}

0 commit comments

Comments
 (0)