From 3f82b9a54a344d7b1b7cff3d30ce26eafc8dbcf9 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Thu, 4 Feb 2021 10:37:10 -0300 Subject: [PATCH] Change chart-testing image --- test/e2e/run-chart-test.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/e2e/run-chart-test.sh b/test/e2e/run-chart-test.sh index 4917ff09d..841c05e7d 100755 --- a/test/e2e/run-chart-test.sh +++ b/test/e2e/run-chart-test.sh @@ -64,11 +64,13 @@ if [ "${SKIP_CLUSTER_CREATION:-false}" = "false" ]; then fi echo "[dev-env] running helm chart e2e tests..." +# Uses a custom chart-testing image to avoid timeouts waiting for namespace deletion. +# The changes can be found here: https://github.com/aledbf/chart-testing/commit/41fe0ae0733d0c9a538099fb3cec522e888e3d82 docker run --rm --interactive --network host \ --name ct \ --volume $KUBECONFIG:/root/.kube/config \ --volume "${DIR}/../../":/workdir \ --workdir /workdir \ - quay.io/helmpack/chart-testing:v3.3.1 ct install \ + aledbf/chart-testing:v3.3.1-next ct install \ --charts charts/ingress-nginx \ --helm-extra-args "--timeout 60s"