Skip to content

Commit 6f2a22a

Browse files
authored
Merge pull request #47 from stefanprodan/release-0.5.1
Release v0.5.1
2 parents efd901a + ee04082 commit 6f2a22a

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

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

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

5+
## 0.5.1 (2019-02-14)
6+
7+
Allows skipping the analysis phase to ship changes directly to production
8+
9+
#### Features
10+
11+
- Add option to skip the canary analysis [#46](https://github.com/stefanprodan/flagger/pull/46)
12+
13+
#### Fixes
14+
15+
- Reject deployment if the pod label selector doesn't match `app: <DEPLOYMENT_NAME>` [#43](https://github.com/stefanprodan/flagger/pull/43)
16+
517
## 0.5.0 (2019-01-30)
618

719
Track changes in ConfigMaps and Secrets [#37](https://github.com/stefanprodan/flagger/pull/37)

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.5.0
25+
image: quay.io/stefanprodan/flagger:0.5.1
2626
imagePullPolicy: Always
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.5.0
4-
appVersion: 0.5.0
3+
version: 0.5.1
4+
appVersion: 0.5.1
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.5.0
5+
tag: 0.5.1
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.5.0"
3+
var VERSION = "0.5.1"
44
var REVISION = "unknown"

0 commit comments

Comments
 (0)