Release v1.3.0

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2020-11-23 13:59:43 +02:00
parent 58de5ab198
commit 82bf73e8da
6 changed files with 26 additions and 6 deletions
+20
View File
@@ -2,6 +2,26 @@
All notable changes to this project are documented in this file.
## 1.3.0 (2020-11-23)
Add support for custom weights when configuring traffic shifting
#### Features
- Support AWS App Mesh backends ARN
[#715](https://github.com/weaveworks/flagger/pull/715)
- Add support for Istio VirtualService delegation
[#715](https://github.com/weaveworks/flagger/pull/715)
- Copy labels from canary to primary workloads based on prefix rules
[#709](https://github.com/weaveworks/flagger/pull/709)
#### Improvements
- Add QPS and Burst configs for kubernetes client
[#725](https://github.com/weaveworks/flagger/pull/725)
- Update Istio to v1.8.0
[#733](https://github.com/weaveworks/flagger/pull/733)
## 1.2.0 (2020-09-29)
Add support for New Relic metrics
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:1.2.0
image: weaveworks/flagger:1.3.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 1.2.0
appVersion: 1.2.0
version: 1.3.0
appVersion: 1.3.0
kubeVersion: ">=1.11.0-0"
engine: gotpl
description: Flagger is a progressive delivery operator for Kubernetes
+1 -1
View File
@@ -2,7 +2,7 @@
image:
repository: weaveworks/flagger
tag: 1.2.0
tag: 1.3.0
pullPolicy: IfNotPresent
pullSecret:
+1 -1
View File
@@ -8,4 +8,4 @@ resources:
- deployment.yaml
images:
- name: weaveworks/flagger
newTag: 1.2.0
newTag: 1.3.0
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "1.2.0"
var VERSION = "1.3.0"
var REVISION = "unknown"