From bc028fd7c4fb0edd8fd3ff33ece71434b80bfeda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20N=C3=A4gele?= Date: Tue, 23 Apr 2019 22:27:19 +0200 Subject: [PATCH] Update readme and examples for v2.3.1 release (#148) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Reinhard Nägele --- README.md | 6 +++--- examples/docker-for-mac/my_test.sh | 2 +- examples/gke/Dockerfile | 2 +- examples/kind/.circleci/config.yml | 2 +- examples/kind/test/e2e-kind.sh | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b728983..1933c6e 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ available tags [here](https://quay.io/repository/helmpack/chart-testing?tab=tags ### From Source -To install from head with [Go](https://golang.org) v1.10.1 or higher: +To install from head with [Go](https://golang.org) 1.12.4 or higher: ```cli go get github.com/helm/chart-testing/ct @@ -132,7 +132,7 @@ helm-repo-extra-args: ## Building from Source -`ct` is built using Go 1.11. Older versions may work but have not been tested. +`ct` is built using Go 1.12.4. Older versions may work but have not been tested. `build.sh` is used to build and release the tool. It uses [Goreleaser](https://goreleaser.com/) under the covers. @@ -199,7 +199,7 @@ Run the script specifying the version for the new release. ./tag.sh --tag ``` -Versions must start with a lower-case `v`, e. g. `v2.2.0`. +Versions must start with a lower-case `v`, e. g. `v2.3.1`. ## Supported versions diff --git a/examples/docker-for-mac/my_test.sh b/examples/docker-for-mac/my_test.sh index 71f0b15..d4fcec7 100755 --- a/examples/docker-for-mac/my_test.sh +++ b/examples/docker-for-mac/my_test.sh @@ -18,7 +18,7 @@ set -o errexit set -o nounset set -o pipefail -readonly IMAGE_TAG=v2.2.0 +readonly IMAGE_TAG=v2.3.1 readonly IMAGE_REPOSITORY="quay.io/helmpack/chart-testing" main() { diff --git a/examples/gke/Dockerfile b/examples/gke/Dockerfile index 8039517..4996d75 100644 --- a/examples/gke/Dockerfile +++ b/examples/gke/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM quay.io/helmpack/chart-testing:v2.2.0 +FROM quay.io/helmpack/chart-testing:v2.3.1 ENV PATH /google-cloud-sdk/bin:$PATH ARG CLOUD_SDK_VERSION=221.0.0 diff --git a/examples/kind/.circleci/config.yml b/examples/kind/.circleci/config.yml index a217835..eaae598 100644 --- a/examples/kind/.circleci/config.yml +++ b/examples/kind/.circleci/config.yml @@ -10,7 +10,7 @@ jobs: lint-charts: docker: - - image: quay.io/helmpack/chart-testing:v2.2.0 + - image: quay.io/helmpack/chart-testing:v2.3.1 steps: - checkout - run: diff --git a/examples/kind/test/e2e-kind.sh b/examples/kind/test/e2e-kind.sh index 83bfffa..a02485a 100755 --- a/examples/kind/test/e2e-kind.sh +++ b/examples/kind/test/e2e-kind.sh @@ -4,7 +4,7 @@ set -o errexit set -o nounset set -o pipefail -readonly CT_VERSION=v2.2.0 +readonly CT_VERSION=v2.3.1 readonly KIND_VERSION=0.2.1 readonly CLUSTER_NAME=chart-testing readonly K8S_VERSION=v1.13.4