Skip to content

Commit b170bf4

Browse files
authored
Merge pull request #1846 from fluxcd/loadtester-0.36.0
Release loadtester 0.36.0
2 parents 7fcba13 + ae5e39b commit b170bf4

File tree

6 files changed

+25
-8
lines changed

6 files changed

+25
-8
lines changed

Dockerfile.loadtester

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ ARG REVISION
66

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

9-
RUN HELM3_VERSION=3.17.2 && \
9+
RUN HELM3_VERSION=3.19.0 && \
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.31.3 && \
13+
RUN KUBECTL_VERSION=v1.34.1 && \
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

charts/loadtester/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: loadtester
3-
version: 0.35.0
4-
appVersion: 0.35.0
3+
version: 0.36.0
4+
appVersion: 0.36.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

Lines changed: 1 addition & 1 deletion
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.35.0
5+
tag: 0.36.0
66
pullPolicy: IfNotPresent
77
pullSecret:
88

cmd/loadtester/main.go

Lines changed: 1 addition & 1 deletion
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.35.0"
32+
var VERSION = "0.36.0"
3333
var (
3434
logLevel string
3535
port string

kustomize/tester/deployment.yaml

Lines changed: 1 addition & 1 deletion
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.35.0
22+
image: ghcr.io/fluxcd/flagger-loadtester:0.36.0
2323
imagePullPolicy: IfNotPresent
2424
ports:
2525
- name: http

pkg/controller/events_test.go

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
Copyright 2025 The Flux authors
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
117
package controller
218

319
import (
@@ -7,10 +23,11 @@ import (
723
"sync"
824
"testing"
925

10-
flaggerv1 "github.com/fluxcd/flagger/pkg/apis/flagger/v1beta1"
1126
"github.com/stretchr/testify/assert"
1227
"github.com/stretchr/testify/require"
1328
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
29+
30+
flaggerv1 "github.com/fluxcd/flagger/pkg/apis/flagger/v1beta1"
1431
)
1532

1633
func TestWebhooks(t *testing.T) {

0 commit comments

Comments
 (0)