diff --git a/CHANGELOG.md b/CHANGELOG.md index b9477720..b9480cb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project are documented in this file. +## 0.20.2 (2019-11-07) + +Adds support for exposing canaries outside the cluster using App Mesh Gateway annotations + +#### Improvements + +- Expose canaries on public domains with App Mesh Gateway [#358](https://github.com/weaveworks/flagger/pull/358) + +#### Fixes + +- Use the specified replicas when scaling up the canary [#363](https://github.com/weaveworks/flagger/pull/363) + ## 0.20.1 (2019-11-03) Fixes promql execution and updates the load testing tools diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 7f83d0fd..955349f2 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: weaveworks/flagger:0.20.1 + image: weaveworks/flagger:0.20.2 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 9142a7e4..dbf3f4b8 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.20.1 -appVersion: 0.20.1 +version: 0.20.2 +appVersion: 0.20.2 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. diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index e1073993..6bb9ad5d 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.20.1 + tag: 0.20.2 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index c0b959cb..dd072a01 100644 --- a/kustomize/base/flagger/kustomization.yaml +++ b/kustomize/base/flagger/kustomization.yaml @@ -8,4 +8,4 @@ resources: - deployment.yaml images: - name: weaveworks/flagger - newTag: 0.20.1 + newTag: 0.20.2 diff --git a/pkg/version/version.go b/pkg/version/version.go index a1250165..5a2c5acc 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.20.1" +var VERSION = "0.20.2" var REVISION = "unknown"