Skip to content

Commit a88e06d

Browse files
committed
Release loadtester v0.33.0
Signed-off-by: Stefan Prodan <[email protected]>
1 parent 401d049 commit a88e06d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Dockerfile.loadtester

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ ARG REVISION
66

77
RUN apk --no-cache add alpine-sdk perl curl bash tar
88

9-
RUN HELM3_VERSION=3.14.3 && \
9+
RUN HELM3_VERSION=3.15.3 && \
1010
curl -sSL "https://get.helm.sh/helm-v${HELM3_VERSION}-linux-${TARGETARCH}.tar.gz" | tar xvz && \
1111
chmod +x linux-${TARGETARCH}/helm && mv linux-${TARGETARCH}/helm /usr/local/bin/helm
1212

13-
RUN KUBECTL_VERSION=v1.28.0 && \
13+
RUN KUBECTL_VERSION=v1.29.7 && \
1414
curl -LO "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/${TARGETARCH}/kubectl" && \
1515
chmod +x kubectl && mv kubectl /usr/local/bin/kubectl
1616

17-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.19 && \
17+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.28 && \
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-${TARGETARCH} && \
1919
chmod +x /usr/local/bin/grpc_health_probe
2020

21-
RUN GHZ_VERSION=0.117.0 && \
21+
RUN GHZ_VERSION=0.120.0 && \
2222
curl -sSL "https://github.com/bojand/ghz/archive/refs/tags/v${GHZ_VERSION}.tar.gz" | tar xz -C /tmp && \
2323
cd /tmp/ghz-${GHZ_VERSION}/cmd/ghz && GOARCH=$TARGETARCH go build . && mv ghz /usr/local/bin && \
2424
chmod +x /usr/local/bin/ghz

charts/loadtester/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: loadtester
3-
version: 0.32.0
4-
appVersion: 0.32.0
3+
version: 0.33.0
4+
appVersion: 0.33.0
55
kubeVersion: ">=1.19.0-0"
66
engine: gotpl
77
description: Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook.

charts/loadtester/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ replicaCount: 1
22

33
image:
44
repository: ghcr.io/fluxcd/flagger-loadtester
5-
tag: 0.32.0
5+
tag: 0.33.0
66
pullPolicy: IfNotPresent
77
pullSecret:
88

cmd/loadtester/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"github.com/fluxcd/flagger/pkg/signals"
3030
)
3131

32-
var VERSION = "0.32.0"
32+
var VERSION = "0.33.0"
3333
var (
3434
logLevel string
3535
port string

kustomize/tester/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: loadtester
22-
image: ghcr.io/fluxcd/flagger-loadtester:0.32.0
22+
image: ghcr.io/fluxcd/flagger-loadtester:0.33.0
2323
imagePullPolicy: IfNotPresent
2424
ports:
2525
- name: http

0 commit comments

Comments
 (0)