From 6052e9dc238d9f1ea3ddaa897f1e1596ab11c531 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Sat, 5 Dec 2020 15:09:57 -0300 Subject: [PATCH] Update helm chart-testing image --- test/e2e/run-chart-test.sh | 8 +------- test/e2e/run.sh | 6 ------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/test/e2e/run-chart-test.sh b/test/e2e/run-chart-test.sh index 88ae163e8..1b0d50b0b 100755 --- a/test/e2e/run-chart-test.sh +++ b/test/e2e/run-chart-test.sh @@ -47,12 +47,6 @@ export KIND_CLUSTER_NAME=${KIND_CLUSTER_NAME:-ingress-nginx-dev} export KUBECONFIG="${KUBECONFIG:-$HOME/.kube/kind-config-$KIND_CLUSTER_NAME}" -# Disable execution if running as a Prow job -if [[ ! -z ${PROW_JOB_ID:-} ]]; then - echo "skipping execution..." - exit 0 -fi - if [ "${SKIP_CLUSTER_CREATION:-false}" = "false" ]; then echo "[dev-env] creating Kubernetes cluster with kind" @@ -75,6 +69,6 @@ docker run --rm --interactive --network host \ --volume $KUBECONFIG:/root/.kube/config \ --volume "${DIR}/../../":/workdir \ --workdir /workdir \ - aledbf/chart-testing:v3.0.0-rc.4 ct install \ + quay.io/helmpack/chart-testing:v3.3.1 ct install \ --charts charts/ingress-nginx \ --helm-extra-args "--timeout 60s" diff --git a/test/e2e/run.sh b/test/e2e/run.sh index 956df3f1a..82743485f 100755 --- a/test/e2e/run.sh +++ b/test/e2e/run.sh @@ -39,12 +39,6 @@ trap cleanup EXIT export KIND_CLUSTER_NAME=${KIND_CLUSTER_NAME:-ingress-nginx-dev} -# Disable execution if running as a Prow job -#if [[ ! -z ${PROW_JOB_ID:-} ]]; then -# echo "skipping execution..." -# exit 0 -#fi - if ! command -v kind --version &> /dev/null; then echo "kind is not installed. Use the package manager or visit the official site https://kind.sigs.k8s.io/" exit 1