From 578f44772830bcbce9b1e19c958028cb55b5334c Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Wed, 15 Dec 2021 10:47:53 +0200 Subject: [PATCH] loadtester: Update the Helm CLI - helm 2.17.0 - helmv3 3.7.2 Signed-off-by: Stefan Prodan --- Dockerfile.loadtester | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.loadtester b/Dockerfile.loadtester index 49ef93f9..e2c9b594 100644 --- a/Dockerfile.loadtester +++ b/Dockerfile.loadtester @@ -5,12 +5,12 @@ RUN apk --no-cache add alpine-sdk perl curl RUN curl -sSLo hey "https://hey-release.s3.us-east-2.amazonaws.com/hey_linux_amd64" && \ chmod +x hey && mv hey /usr/local/bin/hey -RUN HELM2_VERSION=2.16.8 && \ +RUN HELM2_VERSION=2.17.0 && \ curl -sSL "https://get.helm.sh/helm-v${HELM2_VERSION}-linux-amd64.tar.gz" | tar xvz && \ chmod +x linux-amd64/helm && mv linux-amd64/helm /usr/local/bin/helm && \ chmod +x linux-amd64/tiller && mv linux-amd64/tiller /usr/local/bin/tiller -RUN HELM3_VERSION=3.7.1 && \ +RUN HELM3_VERSION=3.7.2 && \ curl -sSL "https://get.helm.sh/helm-v${HELM3_VERSION}-linux-amd64.tar.gz" | tar xvz && \ chmod +x linux-amd64/helm && mv linux-amd64/helm /usr/local/bin/helmv3