Skip to content

Commit 19b7255

Browse files
authored
Merge pull request #357 from feiskyer/readme
Update install guides and version info
2 parents f95ba2f + 56f7a6b commit 19b7255

File tree

4 files changed

+31
-8
lines changed

4 files changed

+31
-8
lines changed

README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,35 @@ Version matrix:
2323

2424
| Kubernetes Version | cri-tools Version | cri-tools branch |
2525
|--------------------|-------------------|------------------|
26-
| 1.11.X | v1.0.0-beta.1 | master |
26+
| master | - | master |
27+
| 1.11.X | v1.11.1 | release-1.11 |
2728
| 1.10.X | v1.0.0-beta.0 | release-1.10 |
2829
| 1.9.X | v1.0.0-alpha.0 | release-1.9 |
2930
| 1.8.X | v0.2 | release-1.8 |
3031
| 1.7.X | v0.1 | release-1.7 |
3132

3233
We are currently working toward an beta version of CRI validation tests to be used in conjunction with Kubernetes 1.10. See the [roadmap](docs/roadmap.md) for information about current and future milestones.
3334

35+
## Install
36+
37+
### Install crictl
38+
39+
```sh
40+
VERSION="v1.11.1"
41+
wget https://github.com/kubernetes-incubator/cri-tools/releases/download/$VERSION/crictl-$VERSION-linux-amd64.tar.gz
42+
sudo tar zxvf crictl-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
43+
rm -f crictl-$VERSION-linux-amd64.tar.gz
44+
```
45+
46+
### Install critest
47+
48+
```sh
49+
VERSION="v1.11.1"
50+
wget https://github.com/kubernetes-incubator/cri-tools/releases/download/$VERSION/critest-$VERSION-linux-amd64.tar.gz
51+
sudo tar zxvf critest-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
52+
rm -f critest-$VERSION-linux-amd64.tar.gz
53+
```
54+
3455
## Documentation
3556

3657
- [CRI validation test suite](docs/validation.md)

docs/benchmark.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ CRI performance benchmarking provides a benchmarking framework for CRI-compatibl
77
The benchmarking tests binary `critest` can be downloaded from [Releasing page](https://github.com/kubernetes-incubator/cri-tools/releases):
88

99
```sh
10-
wget https://github.com/kubernetes-incubator/cri-tools/releases/download/v1.0.0-beta.0/critest-v1.0.0-beta.0-linux-amd64.tar.gz
11-
sudo tar zxvf critest-v1.0.0-beta.0-linux-amd64.tar.gz -C /usr/local/bin
12-
rm -f critest-v1.0.0-beta.0-linux-amd64.tar.gz
10+
VERSION="v1.11.1"
11+
wget https://github.com/kubernetes-incubator/cri-tools/releases/download/$VERSION/critest-$VERSION-linux-amd64.tar.gz
12+
sudo tar zxvf critest-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
13+
rm -f critest-$VERSION-linux-amd64.tar.gz
1314
```
1415

1516
For v1.0.0-alpha.0 and previous versions, Go and cri-tools source code are also required to run `critest`. The source code could get by running

docs/crictl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crictl is currently in Beta and still under quick iterations. It is hosted at th
99
crictl can be downloaded from cri-tools [release page](https://github.com/kubernetes-incubator/cri-tools/releases):
1010

1111
```sh
12-
VERSION="v1.0.0-beta.1"
12+
VERSION="v1.11.1"
1313
wget https://github.com/kubernetes-incubator/cri-tools/releases/download/$VERSION/crictl-$VERSION-linux-amd64.tar.gz
1414
sudo tar zxvf crictl-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
1515
rm -f crictl-$VERSION-linux-amd64.tar.gz

docs/validation.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ CRI validation testing is currently Alpha and still under quick iterations. We e
99
The benchmarking tests binary `critest` can be downloaded from [Releasing page](https://github.com/kubernetes-incubator/cri-tools/releases):
1010

1111
```sh
12-
wget https://github.com/kubernetes-incubator/cri-tools/releases/download/v1.0.0-beta.0/critest-v1.0.0-beta.0-linux-amd64.tar.gz
13-
sudo tar zxvf critest-v1.0.0-beta.0-linux-amd64.tar.gz -C /usr/local/bin
14-
rm -f critest-v1.0.0-beta.0-linux-amd64.tar.gz
12+
VERSION="v1.11.1"
13+
wget https://github.com/kubernetes-incubator/cri-tools/releases/download/$VERSION/critest-$VERSION-linux-amd64.tar.gz
14+
sudo tar zxvf critest-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
15+
rm -f critest-$VERSION-linux-amd64.tar.gz
1516
```
1617

1718
critest requires [ginkgo](https://github.com/onsi/ginkgo) to run parallel tests. It could be installed by

0 commit comments

Comments
 (0)