Skip to content

Commit 1140af8

Browse files
authored
Merge pull request #63 from stefanprodan/release-0.7.0
Release v0.7.0
2 parents f34739f + a2688c3 commit 1140af8

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

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

5+
## 0.7.0 (2019-02-28)
6+
7+
Adds support for custom metric checks, HTTP timeouts and HTTP retries
8+
9+
#### Features
10+
11+
- Allow custom promql queries in the canary analysis spec [##60](https://github.com/stefanprodan/flagger/pull/#60)
12+
- Add HTTP timeout and retries to canary service spec [##62](https://github.com/stefanprodan/flagger/pull/#62)
13+
514
## 0.6.0 (2019-02-25)
615

716
Allows for [HTTPMatchRequests](https://istio.io/docs/reference/config/istio.networking.v1alpha3/#HTTPMatchRequest)
@@ -20,7 +29,6 @@ to be customized in the service spec of the canary custom resource.
2029
- Run e2e testing on [Kubernetes Kind](https://github.com/kubernetes-sigs/kind) for canary promotion
2130
[#53](https://github.com/stefanprodan/flagger/pull/53)
2231

23-
2432
## 0.5.1 (2019-02-14)
2533

2634
Allows skipping the analysis phase to ship changes directly to production

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Flagger documentation can be found at [docs.flagger.app](https://docs.flagger.ap
3030
* [Canary deployment stages](https://docs.flagger.app/how-it-works#canary-deployment)
3131
* [Canary analysis](https://docs.flagger.app/how-it-works#canary-analysis)
3232
* [HTTP metrics](https://docs.flagger.app/how-it-works#http-metrics)
33+
* [Custom metrics](https://docs.flagger.app/how-it-works#custom-metrics)
3334
* [Webhooks](https://docs.flagger.app/how-it-works#webhooks)
3435
* [Load testing](https://docs.flagger.app/how-it-works#load-testing)
3536
* Usage

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: quay.io/stefanprodan/flagger:0.6.0
25+
image: quay.io/stefanprodan/flagger:0.7.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: 0.6.0
4-
appVersion: 0.6.0
3+
version: 0.7.0
4+
appVersion: 0.7.0
55
kubeVersion: ">=1.11.0-0"
66
engine: gotpl
77
description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis.

charts/flagger/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
image:
44
repository: quay.io/stefanprodan/flagger
5-
tag: 0.6.0
5+
tag: 0.7.0
66
pullPolicy: IfNotPresent
77

88
metricsServer: "http://prometheus.istio-system.svc.cluster.local:9090"

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

3-
var VERSION = "0.6.0"
3+
var VERSION = "0.7.0"
44
var REVISION = "unknown"

0 commit comments

Comments
 (0)