Skip to content

Commit

Permalink
Merge pull request #562 from openSUSE/versions
Browse files Browse the repository at this point in the history
Bump cri-tools version in markdown docs
  • Loading branch information
k8s-ci-robot authored Dec 11, 2019
2 parents 4f6eb4c + 4cf6cac commit a9996ab
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ cri-tools aims to provide a series of debugging and validation tools for Kubelet
Version matrix:

| Kubernetes Version | cri-tools Version | cri-tools branch |
|--------------------|-------------------|------------------|
| 1.17.x | v1.17.0 | master |
| 1.16.x | v1.16.0 | release-1.16 |
| ------------------ | ----------------- | ---------------- |
| 1.16.x/1.17.x | 1.16.x/1.17.x | master |
| 1.15.X | v1.15.0 | release-1.15 |
| 1.14.X | v1.14.0 | release-1.14 |
| 1.13.X | v1.13.0 | release-1.13 |
Expand All @@ -42,7 +41,7 @@ See the [roadmap](docs/roadmap.md) for information about current and future mile
### Install crictl

```sh
VERSION="v1.16.1"
VERSION="v1.17.0"
wget https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/crictl-$VERSION-linux-amd64.tar.gz
sudo tar zxvf crictl-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
rm -f crictl-$VERSION-linux-amd64.tar.gz
Expand All @@ -51,7 +50,7 @@ rm -f crictl-$VERSION-linux-amd64.tar.gz
### Install critest

```sh
VERSION="v1.16.1"
VERSION="v1.17.0"
wget https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/critest-$VERSION-linux-amd64.tar.gz
sudo tar zxvf critest-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
rm -f critest-$VERSION-linux-amd64.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion docs/benchmark.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CRI performance benchmarking provides a benchmarking framework for CRI-compatibl
The benchmarking tests binary `critest` can be downloaded from [Releasing page](https://github.com/kubernetes-sigs/cri-tools/releases):

```sh
VERSION="v1.16.0"
VERSION="v1.17.0"
wget https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/critest-$VERSION-linux-amd64.tar.gz
sudo tar zxvf critest-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
rm -f critest-$VERSION-linux-amd64.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions docs/crictl.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crictl is currently in Beta and still under quick iterations. It is hosted at th
- using `wget`:

```sh
VERSION="v1.16.0"
VERSION="v1.17.0"
wget https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/crictl-$VERSION-linux-amd64.tar.gz
sudo tar zxvf crictl-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
rm -f crictl-$VERSION-linux-amd64.tar.gz
Expand All @@ -20,7 +20,7 @@ rm -f crictl-$VERSION-linux-amd64.tar.gz
- using `curl`:

```sh
VERSION="v1.16.0"
VERSION="v1.17.0"
curl -L https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/crictl-${VERSION}-linux-amd64.tar.gz --output crictl-${VERSION}-linux-amd64.tar.gz
sudo tar zxvf crictl-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
rm -f crictl-$VERSION-linux-amd64.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion docs/validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CRI validation testing is currently Alpha and still under quick iterations. We e
The benchmarking tests binary `critest` can be downloaded from [Releasing page](https://github.com/kubernetes-sigs/cri-tools/releases):

```sh
VERSION="v1.16.0"
VERSION="v1.17.0"
wget https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/critest-$VERSION-linux-amd64.tar.gz
sudo tar zxvf critest-$VERSION-linux-amd64.tar.gz -C /usr/local/bin
rm -f critest-$VERSION-linux-amd64.tar.gz
Expand Down

0 comments on commit a9996ab

Please sign in to comment.