Release v0.18.1

This commit is contained in:
stefanprodan
2019-07-30 13:22:51 +03:00
parent fae9aa664d
commit e8d91a0375
6 changed files with 14 additions and 6 deletions

View File

@@ -2,6 +2,14 @@
All notable changes to this project are documented in this file.
## 0.18.1 (2019-07-30)
Fixes Blue/Green style deployments for Kubernetes and Linkerd providers
#### Fixes
- Fix Blue/Green metrics provider and add e2e tests [#261](https://github.com/weaveworks/flagger/pull/261)
## 0.18.0 (2019-07-29)
Adds support for [manual gating](https://docs.flagger.app/how-it-works#manual-gating) and pausing/resuming an ongoing analysis

View File

@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:0.18.0
image: weaveworks/flagger:0.18.1
imagePullPolicy: IfNotPresent
ports:
- name: http

View File

@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.18.0
appVersion: 0.18.0
version: 0.18.1
appVersion: 0.18.1
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.

View File

@@ -2,7 +2,7 @@
image:
repository: weaveworks/flagger
tag: 0.18.0
tag: 0.18.1
pullPolicy: IfNotPresent
metricsServer: "http://prometheus:9090"

View File

@@ -8,4 +8,4 @@ resources:
- deployment.yaml
images:
- name: weaveworks/flagger
newTag: 0.18.0
newTag: 0.18.1

View File

@@ -1,4 +1,4 @@
package version
var VERSION = "0.18.0"
var VERSION = "0.18.1"
var REVISION = "unknown"