Skip to content

Commit

Permalink
Update docs and examples for v3.7.1 (#527)
Browse files Browse the repository at this point in the history
Signed-off-by: Lyon Till <[email protected]>
  • Loading branch information
ljtill authored Mar 19, 2023
1 parent efd269d commit 1b7b4a9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/docker-for-mac/my_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion examples/gke/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/kind/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion examples/kind/test/e2e-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1b7b4a9

Please sign in to comment.