From f7513b33a683074e38959f39f3a8582faa5f8f80 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Sun, 8 Sep 2019 11:21:16 +0300 Subject: [PATCH] Release v0.18.4 --- CHANGELOG.md | 15 +++++++++++++++ artifacts/flagger/deployment.yaml | 2 +- charts/flagger/Chart.yaml | 4 ++-- charts/flagger/values.yaml | 2 +- kustomize/base/flagger/kustomization.yaml | 2 +- pkg/version/version.go | 2 +- 6 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d009f83c..8462e368 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project are documented in this file. +## 0.18.4 (2019-09-08) + +Adds support for NGINX custom annotations and Helm v3 acceptance testing + +#### Features + +- Add annotations prefix for NGINX ingresses [#293](https://github.com/weaveworks/flagger/pull/293) +- Add wide columns in CRD [#289](https://github.com/weaveworks/flagger/pull/289) +- loadtester: implement Helm v3 test command [#296](https://github.com/weaveworks/flagger/pull/296) +- loadtester: add gPRC health check to load tester image [#295](https://github.com/weaveworks/flagger/pull/295) + +#### Fixes + +- loadtester: fix tests error logging [#286](https://github.com/weaveworks/flagger/pull/286) + ## 0.18.3 (2019-08-22) Adds support for tillerless helm tests and protobuf health checking diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 029d8d93..9fdabeb7 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.18.3 + image: weaveworks/flagger:0.18.4 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 33b34c66..1250487b 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.18.3 -appVersion: 0.18.3 +version: 0.18.4 +appVersion: 0.18.4 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 8783b1e6..16f33364 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.18.3 + tag: 0.18.4 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 982ba07f..2cced63e 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.18.3 + newTag: 0.18.4 diff --git a/pkg/version/version.go b/pkg/version/version.go index 0e6aaf03..21cef27a 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.18.3" +var VERSION = "0.18.4" var REVISION = "unknown"