Release v0.13.0

This commit is contained in:
stefanprodan
2019-05-08 18:05:47 +03:00
parent 948df55de3
commit 1f9f6fb55a
6 changed files with 20 additions and 6 deletions
+13
View File
@@ -2,6 +2,19 @@
All notable changes to this project are documented in this file.
## 0.13.0 (2019-04-08)
Adds support for [NGINX](https://docs.flagger.app/usage/nginx-progressive-delivery) ingress controller
#### Features
- Add support for nginx ingress controller (weighted traffic and A/B testing) [#170](https://github.com/weaveworks/flagger/pull/170)
- Add Prometheus add-on to Flagger Helm chart for App Mesh and NGINX [79b3370](https://github.com/weaveworks/flagger/pull/170/commits/79b337089294a92961bc8446fd185b38c50a32df)
#### Fixes
- Fix duplicate hosts Istio error when using wildcards [#162](https://github.com/weaveworks/flagger/pull/162)
## 0.12.0 (2019-04-29)
Adds support for [SuperGloo](https://docs.flagger.app/install/flagger-install-with-supergloo)
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:0.12.0
image: weaveworks/flagger:0.13.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+3 -3
View File
@@ -1,10 +1,10 @@
apiVersion: v1
name: flagger
version: 0.12.0
appVersion: 0.12.0
version: 0.13.0
appVersion: 0.13.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.
description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio, App Mesh or NGINX routing for traffic shifting and Prometheus metrics for canary analysis.
home: https://docs.flagger.app
icon: https://raw.githubusercontent.com/weaveworks/flagger/master/docs/logo/flagger-icon.png
sources:
+1 -1
View File
@@ -2,7 +2,7 @@
image:
repository: weaveworks/flagger
tag: 0.12.0
tag: 0.13.0
pullPolicy: IfNotPresent
metricsServer: "http://prometheus:9090"
+1
View File
@@ -15,6 +15,7 @@
* [Istio Canary Deployments](usage/progressive-delivery.md)
* [Istio A/B Testing](usage/ab-testing.md)
* [App Mesh Canary Deployments](usage/appmesh-progressive-delivery.md)
* [NGINX Canary Deployments](usage/nginx-progressive-delivery.md)
* [Monitoring](usage/monitoring.md)
* [Alerting](usage/alerting.md)
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "0.12.0"
var VERSION = "0.13.0"
var REVISION = "unknown"