diff --git a/CHANGELOG.md b/CHANGELOG.md index de988679..244c3f71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,29 @@ All notable changes to this project are documented in this file. +## 1.14.0 + +**Release date:** 2021-09-20 + +This release comes with support for extending the canary analysis with +Dynatrace, InfluxDB and Google Cloud Monitoring (Stackdriver) metrics. + +#### Features + +- Add Stackdriver metric provider + [#991](https://github.com/fluxcd/flagger/pull/991) +- Add Influxdb metric provider + [#1012](https://github.com/fluxcd/flagger/pull/1012) +- Add Dynatrace metric provider + [#1013](https://github.com/fluxcd/flagger/pull/1013) + +#### Fixes + +- Fix inline promql query + [#1015](https://github.com/fluxcd/flagger/pull/1015) +- Fix Istio load balancer settings mapping + [#1016](https://github.com/fluxcd/flagger/pull/1016) + ## 1.13.0 **Release date:** 2021-08-25 diff --git a/README.md b/README.md index e8f493fa..a36f21d6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# flagger + # flagger [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4783/badge)](https://bestpractices.coreinfrastructure.org/projects/4783) [![build](https://github.com/fluxcd/flagger/workflows/build/badge.svg)](https://github.com/fluxcd/flagger/actions) @@ -15,8 +15,8 @@ by gradually shifting traffic to the new version while measuring metrics and run Flagger implements several deployment strategies (Canary releases, A/B testing, Blue/Green mirroring) using a service mesh (App Mesh, Istio, Linkerd, Open Service Mesh) or an ingress controller (Contour, Gloo, NGINX, Skipper, Traefik) for traffic routing. -For release analysis, Flagger can query Prometheus, Datadog, New Relic or CloudWatch -and for alerting it uses Slack, MS Teams, Discord, Rocket and Google Chat. +For release analysis, Flagger can query Prometheus, Datadog, New Relic, CloudWatch, Dynatrace, +InfluxDB and Stackdriver and for alerting it uses Slack, MS Teams, Discord, Rocket and Google Chat. Flagger is a [Cloud Native Computing Foundation](https://cncf.io/) project and part of [Flux](https://fluxcd.io) family of GitOps tools. diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 8e768172..ab65d816 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: ghcr.io/fluxcd/flagger:1.13.0 + image: ghcr.io/fluxcd/flagger:1.14.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index b31750fc..7a0d5054 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.13.0 -appVersion: 1.13.0 +version: 1.14.0 +appVersion: 1.14.0 kubeVersion: ">=1.16.0-0" engine: gotpl description: Flagger is a progressive delivery operator for Kubernetes diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index 3d7b96df..28604644 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.13.0 + tag: 1.14.0 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 2895a4f6..750b685b 100644 --- a/kustomize/base/flagger/kustomization.yaml +++ b/kustomize/base/flagger/kustomization.yaml @@ -9,4 +9,4 @@ resources: images: - name: ghcr.io/fluxcd/flagger newName: ghcr.io/fluxcd/flagger - newTag: 1.13.0 + newTag: 1.14.0 diff --git a/pkg/version/version.go b/pkg/version/version.go index 3ec4c45a..7b495f54 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -16,5 +16,5 @@ limitations under the License. package version -var VERSION = "1.13.0" +var VERSION = "1.14.0" var REVISION = "unknown"