Merge pull request #702 from weaveworks/release-v1.2.0

Release v1.2.0
This commit is contained in:
Stefan Prodan
2020-09-29 09:43:46 +03:00
committed by GitHub
11 changed files with 37 additions and 16 deletions
+21
View File
@@ -2,6 +2,27 @@
All notable changes to this project are documented in this file.
## 1.2.0 (2020-10-29)
Add support for New Relic metrics
#### Features
- Add New Relic as a metrics provider
[#691](https://github.com/weaveworks/flagger/pull/691)
#### Improvements
- Derive the label selector value from the target matchLabel
[#685](https://github.com/weaveworks/flagger/pull/685)
- Preserve Skipper predicates
[#681](https://github.com/weaveworks/flagger/pull/681)
#### Fixes
- Do not promote when not ready on skip analysis
[#695](https://github.com/weaveworks/flagger/pull/695)
## 1.1.0 (2020-08-18)
Add support for Skipper ingress controller
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:1.1.0
image: weaveworks/flagger:1.2.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 1.1.0
appVersion: 1.1.0
version: 1.2.0
appVersion: 1.2.0
kubeVersion: ">=1.11.0-0"
engine: gotpl
description: Flagger is a progressive delivery operator for Kubernetes
+2 -2
View File
@@ -2,7 +2,7 @@
image:
repository: weaveworks/flagger
tag: 1.1.0
tag: 1.2.0
pullPolicy: IfNotPresent
pullSecret:
@@ -124,7 +124,7 @@ tolerations: []
prometheus:
# to be used with ingress controllers
install: false
image: docker.io/prom/prometheus:v2.19.0
image: docker.io/prom/prometheus:v2.21.0
retention: 2h
# Istio multi-cluster service mesh (shared control plane single-network)
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: grafana
version: 1.4.0
appVersion: 6.5.1
version: 1.5.0
appVersion: 7.2.0
description: Grafana dashboards for monitoring Flagger canary deployments
icon: https://raw.githubusercontent.com/weaveworks/flagger/master/docs/logo/weaveworks.png
home: https://flagger.app
+2 -2
View File
@@ -6,7 +6,7 @@ replicaCount: 1
image:
repository: grafana/grafana
tag: 6.5.1
tag: 7.2.0
pullPolicy: IfNotPresent
podAnnotations: {}
@@ -32,7 +32,7 @@ affinity: {}
user: admin
password:
# Istio Prometheus instance
# Prometheus instance
url: http://prometheus:9090
# Weave Cloud instance token
+2 -2
View File
@@ -1,6 +1,6 @@
apiVersion: v1
version: 3.1.1
appVersion: 3.1.0
version: 5.0.0
appVersion: 5.0.0
name: podinfo
engine: gotpl
description: Flagger canary deployment demo application
+2 -2
View File
@@ -1,7 +1,7 @@
# Default values for podinfo.
image:
repository: stefanprodan/podinfo
tag: 3.1.0
repository: ghcr.io/stefanprodan/podinfo
tag: 5.0.0
pullPolicy: IfNotPresent
podAnnotations: {}
+1 -1
View File
@@ -8,4 +8,4 @@ resources:
- deployment.yaml
images:
- name: weaveworks/flagger
newTag: 1.1.0
newTag: 1.2.0
+1 -1
View File
@@ -19,7 +19,7 @@ spec:
serviceAccountName: flagger-prometheus
containers:
- name: prometheus
image: prom/prometheus:v2.19.0
image: prom/prometheus:v2.21.0
imagePullPolicy: IfNotPresent
args:
- '--storage.tsdb.retention=2h'
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "1.1.0"
var VERSION = "1.2.0"
var REVISION = "unknown"