Skip to content

Commit

Permalink
Bump cri-tools to v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
feiskyer committed Jun 18, 2018
1 parent 9c667f5 commit 2c3be51
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 8 deletions.
39 changes: 33 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
<!-- TOC -->

- [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)
Expand All @@ -17,6 +23,27 @@
- [Documentation](#documentation)

<!-- /TOC -->

# 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.
Expand Down
3 changes: 2 additions & 1 deletion cmd/crictl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import (
const (
defaultConfigPath = "/etc/crictl.yaml"
defaultTimeout = 10 * time.Second
crictlVersion = "1.11.0"
)

var (
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion cmd/critest/cri_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const (
benchmarkFlag = "benchmark"
versionFlag = "version"

criTestVersion = "1.0.0-beta.1"
criTestVersion = "1.11.0"
)

var (
Expand Down

0 comments on commit 2c3be51

Please sign in to comment.