Skip to content

Commit 773094a

Browse files
authored
Merge pull request #99 from stefanprodan/loadtester-v0.2.0
Release loadtester v0.2.0
2 parents 62f4a6c + 5aa3910 commit 773094a

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

artifacts/loadtester/deployment.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: loadtester
20-
image: quay.io/stefanprodan/flagger-loadtester:0.1.0
20+
image: quay.io/stefanprodan/flagger-loadtester:0.2.0
2121
imagePullPolicy: IfNotPresent
2222
ports:
2323
- name: http
@@ -27,7 +27,6 @@ spec:
2727
- -port=8080
2828
- -log-level=info
2929
- -timeout=1h
30-
- -log-cmd-output=true
3130
livenessProbe:
3231
exec:
3332
command:

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.1.0
4-
appVersion: 0.1.0
3+
version: 0.2.0
4+
appVersion: 0.2.0
55
kubeVersion: ">=1.11.0-0"
66
engine: gotpl
77
description: Flagger's load testing services based on rakyll/hey 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: quay.io/stefanprodan/flagger-loadtester
5-
tag: 0.1.0
5+
tag: 0.2.0
66
pullPolicy: IfNotPresent
77

88
logLevel: info

cmd/loadtester/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"time"
1111
)
1212

13-
var VERSION = "0.1.0"
13+
var VERSION = "0.2.0"
1414
var (
1515
logLevel string
1616
port string

test/e2e-tests.sh

+2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ spec:
8080
url: http://flagger-loadtester.test/
8181
timeout: 5s
8282
metadata:
83+
type: cmd
8384
cmd: "hey -z 10m -q 10 -c 2 http://podinfo.test:9898/"
85+
logCmdOutput: "true"
8486
8587
EOF
8688

0 commit comments

Comments
 (0)