Skip to content

Commit 14adedb

Browse files
authored
Merge pull request #702 from weaveworks/release-v1.2.0
Release v1.2.0
2 parents 17237fb + f2608e6 commit 14adedb

11 files changed

Lines changed: 37 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## 1.2.0 (2020-10-29)
6+
7+
Add support for New Relic metrics
8+
9+
#### Features
10+
11+
- Add New Relic as a metrics provider
12+
[#691](https://github.com/weaveworks/flagger/pull/691)
13+
14+
#### Improvements
15+
16+
- Derive the label selector value from the target matchLabel
17+
[#685](https://github.com/weaveworks/flagger/pull/685)
18+
- Preserve Skipper predicates
19+
[#681](https://github.com/weaveworks/flagger/pull/681)
20+
21+
#### Fixes
22+
23+
- Do not promote when not ready on skip analysis
24+
[#695](https://github.com/weaveworks/flagger/pull/695)
25+
526
## 1.1.0 (2020-08-18)
627

728
Add support for Skipper ingress controller

artifacts/flagger/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
serviceAccountName: flagger
2323
containers:
2424
- name: flagger
25-
image: weaveworks/flagger:1.1.0
25+
image: weaveworks/flagger:1.2.0
2626
imagePullPolicy: IfNotPresent
2727
ports:
2828
- name: http

charts/flagger/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: flagger
3-
version: 1.1.0
4-
appVersion: 1.1.0
3+
version: 1.2.0
4+
appVersion: 1.2.0
55
kubeVersion: ">=1.11.0-0"
66
engine: gotpl
77
description: Flagger is a progressive delivery operator for Kubernetes

charts/flagger/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
image:
44
repository: weaveworks/flagger
5-
tag: 1.1.0
5+
tag: 1.2.0
66
pullPolicy: IfNotPresent
77
pullSecret:
88

@@ -124,7 +124,7 @@ tolerations: []
124124
prometheus:
125125
# to be used with ingress controllers
126126
install: false
127-
image: docker.io/prom/prometheus:v2.19.0
127+
image: docker.io/prom/prometheus:v2.21.0
128128
retention: 2h
129129

130130
# Istio multi-cluster service mesh (shared control plane single-network)

charts/grafana/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: grafana
3-
version: 1.4.0
4-
appVersion: 6.5.1
3+
version: 1.5.0
4+
appVersion: 7.2.0
55
description: Grafana dashboards for monitoring Flagger canary deployments
66
icon: https://raw.githubusercontent.com/weaveworks/flagger/master/docs/logo/weaveworks.png
77
home: https://flagger.app

charts/grafana/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66

77
image:
88
repository: grafana/grafana
9-
tag: 6.5.1
9+
tag: 7.2.0
1010
pullPolicy: IfNotPresent
1111

1212
podAnnotations: {}
@@ -32,7 +32,7 @@ affinity: {}
3232
user: admin
3333
password:
3434

35-
# Istio Prometheus instance
35+
# Prometheus instance
3636
url: http://prometheus:9090
3737

3838
# Weave Cloud instance token

charts/podinfo/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
2-
version: 3.1.1
3-
appVersion: 3.1.0
2+
version: 5.0.0
3+
appVersion: 5.0.0
44
name: podinfo
55
engine: gotpl
66
description: Flagger canary deployment demo application

charts/podinfo/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Default values for podinfo.
22
image:
3-
repository: stefanprodan/podinfo
4-
tag: 3.1.0
3+
repository: ghcr.io/stefanprodan/podinfo
4+
tag: 5.0.0
55
pullPolicy: IfNotPresent
66

77
podAnnotations: {}

kustomize/base/flagger/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ resources:
88
- deployment.yaml
99
images:
1010
- name: weaveworks/flagger
11-
newTag: 1.1.0
11+
newTag: 1.2.0

kustomize/base/prometheus/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
serviceAccountName: flagger-prometheus
2020
containers:
2121
- name: prometheus
22-
image: prom/prometheus:v2.19.0
22+
image: prom/prometheus:v2.21.0
2323
imagePullPolicy: IfNotPresent
2424
args:
2525
- '--storage.tsdb.retention=2h'

0 commit comments

Comments
 (0)