Skip to content

Commit 3ff0786

Browse files
authored
Merge pull request #394 from weaveworks/helm-tester-v3.0.1
Update Helm tester to Helm v3.0.1
2 parents ff6acae + a60dc55 commit 3ff0786

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Dockerfile.loadtester

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ curl -sSL "https://get.helm.sh/helm-v${HELM2_VERSION}-linux-amd64.tar.gz" | tar
1010
chmod +x linux-amd64/helm && mv linux-amd64/helm /usr/local/bin/helm && \
1111
chmod +x linux-amd64/tiller && mv linux-amd64/tiller /usr/local/bin/tiller
1212

13-
RUN HELM3_VERSION=3.0.0-rc.3 && \
13+
RUN HELM3_VERSION=3.0.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

artifacts/loadtester/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: loadtester
20-
image: weaveworks/flagger-loadtester:0.12.0
20+
image: weaveworks/flagger-loadtester:0.12.1
2121
imagePullPolicy: IfNotPresent
2222
ports:
2323
- name: http

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.12.0
4-
appVersion: 0.12.0
3+
version: 0.12.1
4+
appVersion: 0.12.1
55
kubeVersion: ">=1.11.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: weaveworks/flagger-loadtester
5-
tag: 0.12.0
5+
tag: 0.12.1
66
pullPolicy: IfNotPresent
77

88
podAnnotations:

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.12.0"
13+
var VERSION = "0.12.1"
1414
var (
1515
logLevel string
1616
port string

kustomize/tester/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
spec:
1919
containers:
2020
- name: loadtester
21-
image: weaveworks/flagger-loadtester:0.12.0
21+
image: weaveworks/flagger-loadtester:0.12.1
2222
imagePullPolicy: IfNotPresent
2323
ports:
2424
- name: http

0 commit comments

Comments
 (0)