Merge pull request #93 from stefanprodan/release-v0.9.0

Release v0.9.0
This commit is contained in:
Stefan Prodan
2019-03-11 15:26:00 +02:00
committed by GitHub
5 changed files with 18 additions and 5 deletions
+13
View File
@@ -2,6 +2,19 @@
All notable changes to this project are documented in this file.
## 0.9.0 (2019-03-11)
Allows A/B testing scenarios where instead of weighted routing, the traffic is split between the
primary and canary based on HTTP headers or cookies.
#### Features
- A/B testing - canary with session affinity [#88](https://github.com/stefanprodan/flagger/pull/88)
#### Fixes
- Update the analysis interval when the custom resource changes [#91](https://github.com/stefanprodan/flagger/pull/91)
## 0.8.0 (2019-03-06)
Adds support for CORS policy and HTTP request headers manipulation
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: quay.io/stefanprodan/flagger:0.8.0
image: quay.io/stefanprodan/flagger:0.9.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.8.0
appVersion: 0.8.0
version: 0.9.0
appVersion: 0.9.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.
+1 -1
View File
@@ -2,7 +2,7 @@
image:
repository: quay.io/stefanprodan/flagger
tag: 0.8.0
tag: 0.9.0
pullPolicy: IfNotPresent
metricsServer: "http://prometheus.istio-system.svc.cluster.local:9090"
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "0.8.0"
var VERSION = "0.9.0"
var REVISION = "unknown"