Release v0.5.1

This commit is contained in:
stefanprodan
2019-02-13 18:59:34 +02:00
parent efd901ac3a
commit ee04082cd7
5 changed files with 17 additions and 5 deletions

View File

@@ -2,6 +2,18 @@
All notable changes to this project are documented in this file.
## 0.5.1 (2019-02-14)
Allows skipping the analysis phase to ship changes directly to production
#### Features
- Add option to skip the canary analysis [#46](https://github.com/stefanprodan/flagger/pull/46)
#### Fixes
- Reject deployment if the pod label selector doesn't match `app: <DEPLOYMENT_NAME>` [#43](https://github.com/stefanprodan/flagger/pull/43)
## 0.5.0 (2019-01-30)
Track changes in ConfigMaps and Secrets [#37](https://github.com/stefanprodan/flagger/pull/37)

View File

@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: quay.io/stefanprodan/flagger:0.5.0
image: quay.io/stefanprodan/flagger:0.5.1
imagePullPolicy: Always
ports:
- name: http

View File

@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.5.0
appVersion: 0.5.0
version: 0.5.1
appVersion: 0.5.1
kubeVersion: ">=1.11.0-0"
engine: gotpl
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.

View File

@@ -2,7 +2,7 @@
image:
repository: quay.io/stefanprodan/flagger
tag: 0.5.0
tag: 0.5.1
pullPolicy: IfNotPresent
metricsServer: "http://prometheus.istio-system.svc.cluster.local:9090"

View File

@@ -1,4 +1,4 @@
package version
var VERSION = "0.5.0"
var VERSION = "0.5.1"
var REVISION = "unknown"