From 1b7b4a9618c44933b080315178913f47a35a171a Mon Sep 17 00:00:00 2001 From: Lyon Till <158992+ljtill@users.noreply.github.com> Date: Sun, 19 Mar 2023 13:48:04 +0000 Subject: [PATCH] Update docs and examples for v3.7.1 (#527) Signed-off-by: Lyon Till --- README.md | 4 ++-- 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, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fdb7809..8d6a820 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ If you have a chart in current directory and ct installed on the host then you c With docker it works with: - docker run -it --network host --workdir=/data --volume ~/.kube/config:/root/.kube/config:ro --volume $(pwd):/data quay.io/helmpack/chart-testing:v3.5.0 ct install --chart-dirs . --charts . + docker run -it --network host --workdir=/data --volume ~/.kube/config:/root/.kube/config:ro --volume $(pwd):/data quay.io/helmpack/chart-testing:v3.7.1 ct install --chart-dirs . --charts . Notice that `workdir` param is important and must be the same as volume mounted. @@ -193,7 +193,7 @@ Here's a previous one for reference: https://github.com/helm/chart-testing/pull/ ### Create Release The release workflow is [dispatched from github actions](https://github.com/helm/chart-testing/actions) -Versions must start with a lower-case `v`, e. g. `v3.5.0`. +Versions must start with a lower-case `v`, e. g. `v3.7.1`. ## Supported versions diff --git a/examples/docker-for-mac/my_test.sh b/examples/docker-for-mac/my_test.sh index 7e8451c..e14feed 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=v3.4.0 +readonly IMAGE_TAG=v3.7.1 readonly IMAGE_REPOSITORY="quay.io/helmpack/chart-testing" main() { diff --git a/examples/gke/Dockerfile b/examples/gke/Dockerfile index c33c6b6..3939a74 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:v3.4.0 +FROM quay.io/helmpack/chart-testing:v3.7.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 b67353a..2483989 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:v3.4.0 + - image: quay.io/helmpack/chart-testing:v3.7.1 steps: - checkout - run: diff --git a/examples/kind/test/e2e-kind.sh b/examples/kind/test/e2e-kind.sh index 2fd8b6a..904752d 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=v3.4.0 +readonly CT_VERSION=v3.7.1 readonly KIND_VERSION=v0.12.0 readonly CLUSTER_NAME=chart-testing readonly K8S_VERSION=v1.22.7