diff --git a/CHANGELOG.md b/CHANGELOG.md index babeaec6..d009f83c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project are documented in this file. +## 0.18.3 (2019-08-22) + +Adds support for tillerless helm tests and protobuf health checking + +#### Features + +- loadtester: add support for tillerless helm [#280](https://github.com/weaveworks/flagger/pull/280) +- loadtester: add support for protobuf health checking [#280](https://github.com/weaveworks/flagger/pull/280) + +#### Improvements + +- Set HTTP listeners for AppMesh virtual routers [#272](https://github.com/weaveworks/flagger/pull/272) + +#### Fixes + +- Add missing fields to CRD validation spec [#271](https://github.com/weaveworks/flagger/pull/271) +- Fix App Mesh backends validation in CRD [#281](https://github.com/weaveworks/flagger/pull/281) + ## 0.18.2 (2019-08-05) Fixes multi-port support for Istio diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index c8a85f4b..029d8d93 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.2 + image: weaveworks/flagger:0.18.3 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 41125eec..33b34c66 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.18.2 -appVersion: 0.18.2 +version: 0.18.3 +appVersion: 0.18.3 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 fc67ff5f..8783b1e6 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.18.2 + tag: 0.18.3 pullPolicy: IfNotPresent pullSecret: diff --git a/charts/loadtester/Chart.yaml b/charts/loadtester/Chart.yaml index 745d4b13..09ac12af 100644 --- a/charts/loadtester/Chart.yaml +++ b/charts/loadtester/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: loadtester -version: 0.6.0 -appVersion: 0.6.1 +version: 0.7.0 +appVersion: 0.7.0 kubeVersion: ">=1.11.0-0" engine: gotpl description: Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook. diff --git a/charts/loadtester/values.yaml b/charts/loadtester/values.yaml index 2cbae313..6904ff43 100644 --- a/charts/loadtester/values.yaml +++ b/charts/loadtester/values.yaml @@ -2,7 +2,7 @@ replicaCount: 1 image: repository: weaveworks/flagger-loadtester - tag: 0.6.1 + tag: 0.7.0 pullPolicy: IfNotPresent logLevel: info diff --git a/cmd/loadtester/main.go b/cmd/loadtester/main.go index 7f790767..e05b7ec0 100644 --- a/cmd/loadtester/main.go +++ b/cmd/loadtester/main.go @@ -10,7 +10,7 @@ import ( "time" ) -var VERSION = "0.6.1" +var VERSION = "0.7.0" var ( logLevel string port string diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index fccd1142..982ba07f 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.2 + newTag: 0.18.3 diff --git a/pkg/version/version.go b/pkg/version/version.go index c52f6568..0e6aaf03 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.18.2" +var VERSION = "0.18.3" var REVISION = "unknown"