Skip to content

Commit 4a1918e

Browse files
committed
Update libraries included in the load tester to newer versions
1 parent 919959b commit 4a1918e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile.loadtester

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.14.2 as build
1+
FROM alpine:3.15.0 as build
22

33
RUN apk --no-cache add alpine-sdk perl curl
44

@@ -14,19 +14,19 @@ RUN HELM3_VERSION=3.7.1 && \
1414
curl -sSL "https://get.helm.sh/helm-v${HELM3_VERSION}-linux-amd64.tar.gz" | tar xvz && \
1515
chmod +x linux-amd64/helm && mv linux-amd64/helm /usr/local/bin/helmv3
1616

17-
RUN GRPC_HEALTH_PROBE_VERSION=v0.3.1 && \
17+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
1818
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 && \
1919
chmod +x /usr/local/bin/grpc_health_probe
2020

21-
RUN GHZ_VERSION=0.39.0 && \
21+
RUN GHZ_VERSION=0.105.0 && \
2222
curl -sSL "https://github.com/bojand/ghz/releases/download/v${GHZ_VERSION}/ghz_${GHZ_VERSION}_Linux_x86_64.tar.gz" | tar xz -C /tmp && \
2323
mv /tmp/ghz /usr/local/bin && chmod +x /usr/local/bin/ghz
2424

2525
RUN HELM_TILLER_VERSION=0.9.3 && \
2626
curl -sSL "https://github.com/rimusz/helm-tiller/archive/v${HELM_TILLER_VERSION}.tar.gz" | tar xz -C /tmp && \
2727
mv /tmp/helm-tiller-${HELM_TILLER_VERSION} /tmp/helm-tiller
2828

29-
RUN WRK_VERSION=4.0.2 && \
29+
RUN WRK_VERSION=4.1.0 && \
3030
cd /tmp && git clone -b ${WRK_VERSION} https://github.com/wg/wrk
3131
RUN cd /tmp/wrk && make
3232

0 commit comments

Comments
 (0)