From 672e5610df0dbac88a4faba66eafad669ebe4cb1 Mon Sep 17 00:00:00 2001 From: Lantao Liu Date: Thu, 3 May 2018 14:06:53 -0700 Subject: [PATCH] Prepare for v1.0.0-beta.1 release. Signed-off-by: Lantao Liu --- CHANGELOG.md | 27 ++++++++++++++++++++++----- README.md | 3 ++- cmd/crictl/main.go | 2 +- cmd/critest/cri_test.go | 2 +- 4 files changed, 26 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f96521560..9338c45b88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ - +- [v1.0.0-beta.1](#v100-beta1) - [v1.0.0-beta.0](#v100-beta0) - - [CRI validation testing (critest)](#cri-validation-testing-critest) - - [CRI CLI (crictl)](#cri-cli-crictl) + - [CRI validation testing (critest)](#cri-validation-testing-critest) + - [CRI CLI (crictl)](#cri-cli-crictl) - [v1.0.0-alpha.0](#v100-alpha0) - - [CRI validation testing (critest)](#cri-validation-testing-critest-1) - - [CRI CLI (crictl)](#cri-cli-crictl-1) + - [CRI validation testing (critest)](#cri-validation-testing-critest-1) + - [CRI CLI (crictl)](#cri-cli-crictl-1) - [v0.2](#v02) - [CRI validation testing (critest)](#cri-validation-testing-critest-2) - [CRI CLI (crictl)](#cri-cli-crictl-2) @@ -17,6 +17,23 @@ - [Documentation](#documentation) +# v1.0.0-beta.1 + +cri-tools v1.0.0-beta.1 mainly focused on critest coverage improvement, and bug fixes. + +### CRI validation testing (critest) + +- [#282](https://github.com/kubernetes-incubator/cri-tools/pull/282) Add RunAsGroup test. The test `runtime should return error if RunAsGroup is set without RunAsUser` only works with Kubernetes 1.11+. +- [#289](https://github.com/kubernetes-incubator/cri-tools/pull/289) Add host network pod portforward test. +- [#290](https://github.com/kubernetes-incubator/cri-tools/pull/290) Use busybox:1.28 instead of busybox:1.26 in the test to better support multi-arch. +- [#296](https://github.com/kubernetes-incubator/cri-tools/pull/296) Make `critest` binary statically linked. + +### CRI CLI (crictl) + +- [#278](https://github.com/kubernetes-incubator/cri-tools/pull/278) Remove "sandbox" from `crictl` command description. +- [#279](https://github.com/kubernetes-incubator/cri-tools/pull/279) Remove `oom-score-adj` flag from `crictl update` because it is not supported by `runc`. +- [#291](https://github.com/kubernetes-incubator/cri-tools/pull/291) Fix a bug that `crictl` generates a log file in `/tmp` directory each run. This can potentially fill `/tmp` directory. +- [#296](https://github.com/kubernetes-incubator/cri-tools/pull/296) Make `crictl` binary statically linked. # v1.0.0-beta.0 diff --git a/README.md b/README.md index 89231baa6b..d5ee709ee4 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,8 @@ Version matrix: | Kubernetes Version | cri-tools Version | cri-tools branch | |--------------------|-------------------|------------------| -| 1.10.X | v1.0.0-beta.0 | master | +| 1.11.X | v1.0.0-beta.1 | master | +| 1.10.X | v1.0.0-beta.0 | release-1.0 | | 1.9.X | v1.0.0-alpha.0 | release-1.9 | | 1.8.X | v0.2 | release-1.8 | | 1.7.X | v0.1 | release-1.7 | diff --git a/cmd/crictl/main.go b/cmd/crictl/main.go index 3773fb3e33..b3b887d8c4 100644 --- a/cmd/crictl/main.go +++ b/cmd/crictl/main.go @@ -96,7 +96,7 @@ func main() { app := cli.NewApp() app.Name = "crictl" app.Usage = "client for CRI" - app.Version = "1.0.0-beta.0" + app.Version = "1.0.0-beta.1" app.Commands = []cli.Command{ runtimeAttachCommand, diff --git a/cmd/critest/cri_test.go b/cmd/critest/cri_test.go index 36de7456aa..ed6d14e6df 100644 --- a/cmd/critest/cri_test.go +++ b/cmd/critest/cri_test.go @@ -42,7 +42,7 @@ const ( benchmarkFlag = "benchmark" versionFlag = "version" - criTestVersion = "1.0.0-beta.0" + criTestVersion = "1.0.0-beta.1" ) var (