Skip to content

Commit 456d914

Browse files
committedJan 30, 2019
Release v0.5.0
1 parent 737507b commit 456d914

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed
 

‎Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ version-set:
4646
sed -i '' "s/flagger:$$current/flagger:$$next/g" artifacts/flagger/deployment.yaml && \
4747
sed -i '' "s/tag: $$current/tag: $$next/g" charts/flagger/values.yaml && \
4848
sed -i '' "s/appVersion: $$current/appVersion: $$next/g" charts/flagger/Chart.yaml && \
49+
sed -i '' "s/version: $$current/version: $$next/g" charts/flagger/Chart.yaml && \
4950
echo "Version $$next set in code, deployment and charts"
5051

5152
version-up:

‎artifacts/flagger/deployment.yaml

+1-1
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.4.1
25+
image: quay.io/stefanprodan/flagger:0.5.0
2626
imagePullPolicy: Always
2727
ports:
2828
- name: http

‎charts/flagger/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: flagger
3-
version: 0.4.1
4-
appVersion: 0.4.1
3+
version: 0.5.0
4+
appVersion: 0.5.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

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

‎pkg/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

3-
var VERSION = "0.4.1"
3+
var VERSION = "0.5.0"
44
var REVISION = "unknown"

0 commit comments

Comments
 (0)
Please sign in to comment.