From 59d3f55fb2c86b61019e5f0a2f6f52233a4a0fe9 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Thu, 28 Feb 2019 16:05:48 +0200 Subject: [PATCH 1/3] Release v0.7.0 --- artifacts/flagger/deployment.yaml | 2 +- charts/flagger/Chart.yaml | 4 ++-- charts/flagger/values.yaml | 2 +- pkg/version/version.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index aacef9e1..72c52d34 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: quay.io/stefanprodan/flagger:0.6.0 + image: quay.io/stefanprodan/flagger:0.7.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 03f6ec06..62276abe 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.6.0 -appVersion: 0.6.0 +version: 0.7.0 +appVersion: 0.7.0 kubeVersion: ">=1.11.0-0" engine: gotpl description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis. diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index 46b6ac66..788408c8 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: quay.io/stefanprodan/flagger - tag: 0.6.0 + tag: 0.7.0 pullPolicy: IfNotPresent metricsServer: "http://prometheus.istio-system.svc.cluster.local:9090" diff --git a/pkg/version/version.go b/pkg/version/version.go index fadfdc36..c6a4403a 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.6.0" +var VERSION = "0.7.0" var REVISION = "unknown" From 75b27ab3f306247fd6795d709ef47449fe82693c Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Thu, 28 Feb 2019 16:56:49 +0200 Subject: [PATCH 2/3] Add change log for v0.7.0 --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7825eb6..1e3af807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project are documented in this file. +## 0.7.0 (2019-02-28) + +Adds support for custom metric checks, HTTP timeouts and HTTP retries + +#### Features + +- Allow custom promql queries in the canary analysis spec [##60](https://github.com/stefanprodan/flagger/pull/#60) +- Add HTTP timeout and retries to canary service spec [##62](https://github.com/stefanprodan/flagger/pull/#62) + ## 0.6.0 (2019-02-25) Allows for [HTTPMatchRequests](https://istio.io/docs/reference/config/istio.networking.v1alpha3/#HTTPMatchRequest) @@ -20,7 +29,6 @@ to be customized in the service spec of the canary custom resource. - Run e2e testing on [Kubernetes Kind](https://github.com/kubernetes-sigs/kind) for canary promotion [#53](https://github.com/stefanprodan/flagger/pull/53) - ## 0.5.1 (2019-02-14) Allows skipping the analysis phase to ship changes directly to production From a2688c39107566fbc6a1e96e981d932a87b440ba Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Thu, 28 Feb 2019 16:58:26 +0200 Subject: [PATCH 3/3] Add link to custom metrics docs --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cae925bc..4ab24337 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ Flagger documentation can be found at [docs.flagger.app](https://docs.flagger.ap * [Canary deployment stages](https://docs.flagger.app/how-it-works#canary-deployment) * [Canary analysis](https://docs.flagger.app/how-it-works#canary-analysis) * [HTTP metrics](https://docs.flagger.app/how-it-works#http-metrics) + * [Custom metrics](https://docs.flagger.app/how-it-works#custom-metrics) * [Webhooks](https://docs.flagger.app/how-it-works#webhooks) * [Load testing](https://docs.flagger.app/how-it-works#load-testing) * Usage