Bump version to 0.3.0-beta.1

This commit is contained in:
stefanprodan
2019-01-07 00:30:09 +02:00
parent e6e3e500be
commit b5c648ea54
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: quay.io/stefanprodan/flagger:0.2.0
image: quay.io/stefanprodan/flagger:0.3.0-beta.1
imagePullPolicy: Always
ports:
- name: http
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.2.0
appVersion: 0.2.0
appVersion: 0.3.0-beta.1
kubeVersion: ">=1.9.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.
+1 -1
View File
@@ -2,7 +2,7 @@
image:
repository: quay.io/stefanprodan/flagger
tag: 0.2.0
tag: 0.3.0-beta.1
pullPolicy: IfNotPresent
controlLoopInterval: "1m"
+1 -1
View File
@@ -31,4 +31,4 @@ func (j CanaryJob) Start() {
func (j CanaryJob) Stop() {
close(j.done)
j.ticker.Stop()
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
package version
var VERSION = "0.2.0"
var VERSION = "0.3.0-beta.1"
var REVISION = "unknown"