diff --git a/CHANGELOG.md b/CHANGELOG.md index db761266..4d31ae5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project are documented in this file. +## 0.13.2 (2019-04-11) + +Fixes for Jenkins X deployments (prevent the jx GC from removing the primary instance) + +#### Fixes + +- Do not copy labels from canary to primary deployment [#178](https://github.com/weaveworks/flagger/pull/178) + +#### Improvements + +- Add NGINX ingress controller e2e and unit tests [#176](https://github.com/weaveworks/flagger/pull/176) + ## 0.13.1 (2019-04-09) Fixes for custom metrics checks and NGINX Prometheus queries @@ -10,7 +22,6 @@ Fixes for custom metrics checks and NGINX Prometheus queries - Fix promql queries for custom checks and NGINX [#174](https://github.com/weaveworks/flagger/pull/174) - ## 0.13.0 (2019-04-08) Adds support for [NGINX](https://docs.flagger.app/usage/nginx-progressive-delivery) ingress controller diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 833be438..7e5fe182 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.13.1 + image: weaveworks/flagger:0.13.2 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index c7b1ca67..24d5f2b5 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.13.1 -appVersion: 0.13.1 +version: 0.13.2 +appVersion: 0.13.2 kubeVersion: ">=1.11.0-0" engine: gotpl 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. diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index 6b6dafdd..3b9e823a 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.13.1 + tag: 0.13.2 pullPolicy: IfNotPresent metricsServer: "http://prometheus:9090" diff --git a/pkg/version/version.go b/pkg/version/version.go index d9f5035d..b04a3033 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.13.1" +var VERSION = "0.13.2" var REVISION = "unknown"