From 955559a23547845a453e962acf41721fce7c683c Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Mon, 19 Apr 2021 16:08:09 +0200 Subject: [PATCH] ci: use Helm 3.1.2 in test container By default a version of Helm is used that does not want to get installed. Using the same version as the devel branch makes the testing work again. See-also: helm/helm#9617 Signed-off-by: Niels de Vos --- scripts/Dockerfile.test | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/Dockerfile.test b/scripts/Dockerfile.test index 9f7e133a9..5b877d263 100644 --- a/scripts/Dockerfile.test +++ b/scripts/Dockerfile.test @@ -13,6 +13,7 @@ FROM fedora:latest ARG GOLANGCI_VERSION=v1.21.0 ARG GOSEC_VERSION=2.0.0 ARG GOPATH=/go +ARG HELM_VERSION=v3.1.2 ENV \ GOPATH=${GOPATH} \ @@ -37,7 +38,7 @@ RUN dnf -y install \ | bash -s -- -b ${GOPATH}/bin "${GOLANGCI_VERSION}" \ && curl -sfL "https://raw.githubusercontent.com/securego/gosec/master/install.sh" \ | sh -s -- -b $GOPATH/bin "${GOSEC_VERSION}" \ - && curl -L https://git.io/get_helm.sh | bash \ + && curl -L https://git.io/get_helm.sh | bash -s -- --version "${HELM_VERSION}" \ && mkdir /opt/commitlint && pushd /opt/commitlint \ && npm init -y \ && npm install @commitlint/cli \