Skip to content

Commit 65e9a40

Browse files
authored
Merge pull request #297 from weaveworks/prep-0.18.4
Release v0.18.4
2 parents 0b3fa51 + f7513b3 commit 65e9a40

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

CHANGELOG.md

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

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

5+
## 0.18.4 (2019-09-08)
6+
7+
Adds support for NGINX custom annotations and Helm v3 acceptance testing
8+
9+
#### Features
10+
11+
- Add annotations prefix for NGINX ingresses [#293](https://github.com/weaveworks/flagger/pull/293)
12+
- Add wide columns in CRD [#289](https://github.com/weaveworks/flagger/pull/289)
13+
- loadtester: implement Helm v3 test command [#296](https://github.com/weaveworks/flagger/pull/296)
14+
- loadtester: add gPRC health check to load tester image [#295](https://github.com/weaveworks/flagger/pull/295)
15+
16+
#### Fixes
17+
18+
- loadtester: fix tests error logging [#286](https://github.com/weaveworks/flagger/pull/286)
19+
520
## 0.18.3 (2019-08-22)
621

722
Adds support for tillerless helm tests and protobuf health checking

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.3
25+
image: weaveworks/flagger:0.18.4
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.3
4-
appVersion: 0.18.3
3+
version: 0.18.4
4+
appVersion: 0.18.4
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.3
5+
tag: 0.18.4
66
pullPolicy: IfNotPresent
77
pullSecret:
88

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.3
11+
newTag: 0.18.4

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.3"
3+
var VERSION = "0.18.4"
44
var REVISION = "unknown"

0 commit comments

Comments
 (0)