Merge pull request #1019 from fluxcd/release-v1.14.0

Release v1.14.0
This commit is contained in:
Stefan Prodan
2021-09-20 11:41:39 +03:00
committed by GitHub
7 changed files with 32 additions and 9 deletions
+23
View File
@@ -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
+3 -3
View File
@@ -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.
+1 -1
View File
@@ -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
+2 -2
View File
@@ -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
+1 -1
View File
@@ -2,7 +2,7 @@
image:
repository: ghcr.io/fluxcd/flagger
tag: 1.13.0
tag: 1.14.0
pullPolicy: IfNotPresent
pullSecret:
+1 -1
View File
@@ -9,4 +9,4 @@ resources:
images:
- name: ghcr.io/fluxcd/flagger
newName: ghcr.io/fluxcd/flagger
newTag: 1.13.0
newTag: 1.14.0
+1 -1
View File
@@ -16,5 +16,5 @@ limitations under the License.
package version
var VERSION = "1.13.0"
var VERSION = "1.14.0"
var REVISION = "unknown"