Skip to content

Commit

Permalink
Merge pull request #702 from weaveworks/release-v1.2.0
Browse files Browse the repository at this point in the history
Release v1.2.0
  • Loading branch information
stefanprodan authored Sep 29, 2020
2 parents 17237fb + f2608e6 commit 14adedb
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 16 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion artifacts/flagger/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/flagger/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/flagger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

image:
repository: weaveworks/flagger
tag: 1.1.0
tag: 1.2.0
pullPolicy: IfNotPresent
pullSecret:

Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions charts/grafana/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/grafana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: grafana/grafana
tag: 6.5.1
tag: 7.2.0
pullPolicy: IfNotPresent

podAnnotations: {}
Expand All @@ -32,7 +32,7 @@ affinity: {}
user: admin
password:

# Istio Prometheus instance
# Prometheus instance
url: http://prometheus:9090

# Weave Cloud instance token
Expand Down
4 changes: 2 additions & 2 deletions charts/podinfo/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/podinfo/values.yaml
Original file line number Diff line number Diff line change
@@ -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: {}
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/flagger/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ resources:
- deployment.yaml
images:
- name: weaveworks/flagger
newTag: 1.1.0
newTag: 1.2.0
2 changes: 1 addition & 1 deletion kustomize/base/prometheus/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

var VERSION = "1.1.0"
var VERSION = "1.2.0"
var REVISION = "unknown"

0 comments on commit 14adedb

Please sign in to comment.