From fb80eea144fe58353c0090f9ead5f71650cc49f5 Mon Sep 17 00:00:00 2001 From: Sanskar Jaiswal Date: Fri, 26 Aug 2022 22:35:05 +0530 Subject: [PATCH] update helm and grpc-health-probe for loadtester Update Helm to v3.9.4 Update grpc-health-probe to v0.4.12 Signed-off-by: Sanskar Jaiswal --- Dockerfile.loadtester | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.loadtester b/Dockerfile.loadtester index cbf30c49..9aeb7f2f 100644 --- a/Dockerfile.loadtester +++ b/Dockerfile.loadtester @@ -6,11 +6,11 @@ ARG REVISION RUN apk --no-cache add alpine-sdk perl curl bash tar -RUN HELM3_VERSION=3.9.2 && \ +RUN HELM3_VERSION=3.9.4 && \ curl -sSL "https://get.helm.sh/helm-v${HELM3_VERSION}-linux-${TARGETARCH}.tar.gz" | tar xvz && \ chmod +x linux-${TARGETARCH}/helm && mv linux-${TARGETARCH}/helm /usr/local/bin/helm -RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.4.12 && \ wget -qO /usr/local/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-${TARGETARCH} && \ chmod +x /usr/local/bin/grpc_health_probe