Merge pull request #150 from weaveworks/release-v0.11.0

Release v0.11.0
This commit is contained in:
Stefan Prodan
2019-04-17 11:25:16 +03:00
committed by GitHub
6 changed files with 24 additions and 7 deletions
+17
View File
@@ -2,6 +2,23 @@
All notable changes to this project are documented in this file.
## 0.11.0 (2019-04-17)
Adds pre/post rollout [webhooks](https://docs.flagger.app/how-it-works#webhooks)
#### Features
- Add `pre-rollout` and `post-rollout` webhook types [#147](https://github.com/weaveworks/flagger/pull/147)
#### Improvements
- Unify App Mesh and Istio builtin metric checks [#146](https://github.com/weaveworks/flagger/pull/146)
- Make the pod selector label configurable [#148](https://github.com/weaveworks/flagger/pull/148)
#### Breaking changes
- Set default `mesh` Istio gateway only if no gateway is specified [#141](https://github.com/weaveworks/flagger/pull/141)
## 0.10.0 (2019-03-27)
Adds support for App Mesh
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: quay.io/weaveworks/flagger:0.10.0
image: weaveworks/flagger:0.11.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: loadtester
image: quay.io/stefanprodan/flagger-loadtester:0.2.0
image: weaveworks/flagger-loadtester:0.2.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.10.0
appVersion: 0.10.0
version: 0.11.0
appVersion: 0.11.0
kubeVersion: ">=1.11.0-0"
engine: gotpl
description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis.
+2 -2
View File
@@ -1,8 +1,8 @@
# Default values for flagger.
image:
repository: quay.io/weaveworks/flagger
tag: 0.10.0
repository: weaveworks/flagger
tag: 0.11.0
pullPolicy: IfNotPresent
metricsServer: "http://prometheus:9090"
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "0.10.0"
var VERSION = "0.11.0"
var REVISION = "unknown"