From 5d3ffa8c9066759d7cabf9bb4f69bfcd56823d47 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Fri, 6 Sep 2019 16:05:15 +0300 Subject: [PATCH] Add grpc_health_probe to load tester image --- Dockerfile.loadtester | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile.loadtester b/Dockerfile.loadtester index e3fdd241..2997002a 100644 --- a/Dockerfile.loadtester +++ b/Dockerfile.loadtester @@ -14,6 +14,10 @@ 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 && \ rm -rf linux-amd64 +RUN GRPC_HEALTH_PROBE_VERSION=v0.3.0 && \ +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-amd64 && \ +chmod +x /usr/local/bin/grpc_health_probe + RUN curl -sSL "https://github.com/bojand/ghz/releases/download/v0.39.0/ghz_0.39.0_Linux_x86_64.tar.gz" | tar xz -C /tmp && \ mv /tmp/ghz /usr/local/bin && chmod +x /usr/local/bin/ghz && rm -rf /tmp/ghz-web