Skip to content

Commit 360dd63

Browse files
authored
Merge pull request #282 from weaveworks/prep-0.18.3
Release 0.18.3
2 parents bc83cee + f1670db commit 360dd63

File tree

9 files changed

+28
-10
lines changed

9 files changed

+28
-10
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## 0.18.3 (2019-08-22)
6+
7+
Adds support for tillerless helm tests and protobuf health checking
8+
9+
#### Features
10+
11+
- loadtester: add support for tillerless helm [#280](https://github.com/weaveworks/flagger/pull/280)
12+
- loadtester: add support for protobuf health checking [#280](https://github.com/weaveworks/flagger/pull/280)
13+
14+
#### Improvements
15+
16+
- Set HTTP listeners for AppMesh virtual routers [#272](https://github.com/weaveworks/flagger/pull/272)
17+
18+
#### Fixes
19+
20+
- Add missing fields to CRD validation spec [#271](https://github.com/weaveworks/flagger/pull/271)
21+
- Fix App Mesh backends validation in CRD [#281](https://github.com/weaveworks/flagger/pull/281)
22+
523
## 0.18.2 (2019-08-05)
624

725
Fixes multi-port support for Istio

artifacts/flagger/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
serviceAccountName: flagger
2323
containers:
2424
- name: flagger
25-
image: weaveworks/flagger:0.18.2
25+
image: weaveworks/flagger:0.18.3
2626
imagePullPolicy: IfNotPresent
2727
ports:
2828
- name: http

charts/flagger/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: flagger
3-
version: 0.18.2
4-
appVersion: 0.18.2
3+
version: 0.18.3
4+
appVersion: 0.18.3
55
kubeVersion: ">=1.11.0-0"
66
engine: gotpl
77
description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio, Linkerd, App Mesh, Gloo or NGINX routing for traffic shifting and Prometheus metrics for canary analysis.

charts/flagger/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
image:
44
repository: weaveworks/flagger
5-
tag: 0.18.2
5+
tag: 0.18.3
66
pullPolicy: IfNotPresent
77
pullSecret:
88

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.6.0
4-
appVersion: 0.6.1
3+
version: 0.7.0
4+
appVersion: 0.7.0
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

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: weaveworks/flagger-loadtester
5-
tag: 0.6.1
5+
tag: 0.7.0
66
pullPolicy: IfNotPresent
77

88
logLevel: info

cmd/loadtester/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"time"
1111
)
1212

13-
var VERSION = "0.6.1"
13+
var VERSION = "0.7.0"
1414
var (
1515
logLevel string
1616
port string

kustomize/base/flagger/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ resources:
88
- deployment.yaml
99
images:
1010
- name: weaveworks/flagger
11-
newTag: 0.18.2
11+
newTag: 0.18.3

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

3-
var VERSION = "0.18.2"
3+
var VERSION = "0.18.3"
44
var REVISION = "unknown"

0 commit comments

Comments
 (0)