Merge pull request #297 from weaveworks/prep-0.18.4

Release v0.18.4
This commit is contained in:
Stefan Prodan
2019-09-08 11:37:47 +03:00
committed by GitHub
6 changed files with 21 additions and 6 deletions
+15
View File
@@ -2,6 +2,21 @@
All notable changes to this project are documented in this file.
## 0.18.4 (2019-09-08)
Adds support for NGINX custom annotations and Helm v3 acceptance testing
#### Features
- Add annotations prefix for NGINX ingresses [#293](https://github.com/weaveworks/flagger/pull/293)
- Add wide columns in CRD [#289](https://github.com/weaveworks/flagger/pull/289)
- loadtester: implement Helm v3 test command [#296](https://github.com/weaveworks/flagger/pull/296)
- loadtester: add gPRC health check to load tester image [#295](https://github.com/weaveworks/flagger/pull/295)
#### Fixes
- loadtester: fix tests error logging [#286](https://github.com/weaveworks/flagger/pull/286)
## 0.18.3 (2019-08-22)
Adds support for tillerless helm tests and protobuf health checking
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:0.18.3
image: weaveworks/flagger:0.18.4
imagePullPolicy: IfNotPresent
ports:
- name: http
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.18.3
appVersion: 0.18.3
version: 0.18.4
appVersion: 0.18.4
kubeVersion: ">=1.11.0-0"
engine: gotpl
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.
+1 -1
View File
@@ -2,7 +2,7 @@
image:
repository: weaveworks/flagger
tag: 0.18.3
tag: 0.18.4
pullPolicy: IfNotPresent
pullSecret:
+1 -1
View File
@@ -8,4 +8,4 @@ resources:
- deployment.yaml
images:
- name: weaveworks/flagger
newTag: 0.18.3
newTag: 0.18.4
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "0.18.3"
var VERSION = "0.18.4"
var REVISION = "unknown"