From 2c3be510b9c84b603ea7984bca2b644e2011586e Mon Sep 17 00:00:00 2001 From: Pengfei Ni Date: Mon, 18 Jun 2018 23:10:53 +0800 Subject: [PATCH] Bump cri-tools to v1.11.0 --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++------ cmd/crictl/main.go | 3 ++- cmd/critest/cri_test.go | 2 +- 3 files changed, 36 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9338c45b88..4c04d30e99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,20 @@ + +- [v1.11.0](#v1110) + - [CRI validation testing (critest)](#cri-validation-testing-critest) + - [CRI CLI (crictl)](#cri-cli-crictl) - [v1.0.0-beta.1](#v100-beta1) + - [CRI validation testing (critest)](#cri-validation-testing-critest-1) + - [CRI CLI (crictl)](#cri-cli-crictl-1) - [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-2) + - [CRI CLI (crictl)](#cri-cli-crictl-2) - [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-3) + - [CRI CLI (crictl)](#cri-cli-crictl-3) - [v0.2](#v02) - - [CRI validation testing (critest)](#cri-validation-testing-critest-2) - - [CRI CLI (crictl)](#cri-cli-crictl-2) + - [CRI validation testing (critest)](#cri-validation-testing-critest-4) + - [CRI CLI (crictl)](#cri-cli-crictl-4) - [v0.1](#v01) - [Features](#features) - [CRI validation testing](#cri-validation-testing) @@ -17,6 +23,27 @@ - [Documentation](#documentation) + +# v1.11.0 + +cri-tools v1.11.0 mainly focused on stability improvements and multi-arch support. Container runtime interface (CRI) has been updated to v1alpha2 in order to be compatible with kubernetes v1.11. + +### CRI validation testing (critest) + +- [#300](https://github.com/kubernetes-incubator/cri-tools/pull/300) Make image-user test images multi-arch. +- [#311](https://github.com/kubernetes-incubator/cri-tools/pull/311) Adds push-manifest into all target in the image-user Makefile. +- [#313](https://github.com/kubernetes-incubator/cri-tools/pull/313) Make hostnet-nginx test images multi-arch. +- [#315](https://github.com/kubernetes-incubator/cri-tools/pull/315) Makes image-test test images multi-arch. +- [#320](https://github.com/kubernetes-incubator/cri-tools/pull/320) Adds container host path validation tests. + +### CRI CLI (crictl) + +- [#306](https://github.com/kubernetes-incubator/cri-tools/pull/306) Fixes argument parsing for crictl exec. +- [#312](https://github.com/kubernetes-incubator/cri-tools/pull/312) Fixes a typo in inspecti usage. +- [#316](https://github.com/kubernetes-incubator/cri-tools/pull/316) Cleanups container and sandbox state. +- [#321](https://github.com/kubernetes-incubator/cri-tools/pull/321) Improves documentation and examples of crictl. +- [#325](https://github.com/kubernetes-incubator/cri-tools/pull/325) Upgrades kubernetes vendor to v1.11 branch. + # v1.0.0-beta.1 cri-tools v1.0.0-beta.1 mainly focused on critest coverage improvement, and bug fixes. diff --git a/cmd/crictl/main.go b/cmd/crictl/main.go index b3b887d8c4..68c164a861 100644 --- a/cmd/crictl/main.go +++ b/cmd/crictl/main.go @@ -34,6 +34,7 @@ import ( const ( defaultConfigPath = "/etc/crictl.yaml" defaultTimeout = 10 * time.Second + crictlVersion = "1.11.0" ) var ( @@ -96,7 +97,7 @@ func main() { app := cli.NewApp() app.Name = "crictl" app.Usage = "client for CRI" - app.Version = "1.0.0-beta.1" + app.Version = crictlVersion app.Commands = []cli.Command{ runtimeAttachCommand, diff --git a/cmd/critest/cri_test.go b/cmd/critest/cri_test.go index ed6d14e6df..1242dc5c53 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.1" + criTestVersion = "1.11.0" ) var (