Skip to content

Commit 0fdbef4

Browse files
authored
Merge pull request #203 from weaveworks/prep-v0.15.0
Release v0.15.0
2 parents f2eaa91 + 68500dc commit 0fdbef4

File tree

9 files changed

+19
-10
lines changed

9 files changed

+19
-10
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.15.0 (2019-06-12)
6+
7+
Adds support for customising the Istio [traffic policy](https://docs.flagger.app/how-it-works#istio-routing) in the canary service spec
8+
9+
#### Features
10+
11+
- Generate Istio destination rules and allow traffic policy customisation [#200](https://github.com/weaveworks/flagger/pull/200)
12+
13+
#### Improvements
14+
15+
- Update Kubernetes packages to 1.14 and use go modules instead of dep [#202](https://github.com/weaveworks/flagger/pull/202)
16+
517
## 0.14.1 (2019-06-05)
618

719
Adds support for running [acceptance/integration tests](https://docs.flagger.app/how-it-works#integration-testing) with Helm test or Bash Bats using pre-rollout hooks

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: weaveworks/flagger:0.14.1
25+
image: weaveworks/flagger:0.15.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.14.1
4-
appVersion: 0.14.1
3+
version: 0.15.0
4+
appVersion: 0.15.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, App Mesh or NGINX 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: weaveworks/flagger
5-
tag: 0.14.1
5+
tag: 0.15.0
66
pullPolicy: IfNotPresent
77

88
metricsServer: "http://prometheus: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.14.1"
3+
var VERSION = "0.15.0"
44
var REVISION = "unknown"

test/e2e-gloo-build.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ kind load docker-image test/flagger:latest
1313

1414
echo '>>> Installing Flagger'
1515
helm upgrade -i flagger ${REPO_ROOT}/charts/flagger \
16-
--wait \
1716
--namespace gloo-system \
1817
--set prometheus.install=true \
1918
--set meshProvider=gloo

test/e2e-istio.sh

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

33
set -o errexit
44

5-
ISTIO_VER="1.1.1"
5+
ISTIO_VER="1.1.8"
66
REPO_ROOT=$(git rev-parse --show-toplevel)
77
export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
88

test/e2e-nginx-build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
88
echo '>>> Building Flagger'
99
cd ${REPO_ROOT} && docker build -t test/flagger:latest . -f Dockerfile
1010

11-
echo '>>> Installing Flagger'
11+
echo '>>> Loading Flagger image'
1212
kind load docker-image test/flagger:latest
1313

1414
echo '>>> Installing Flagger'
1515
helm upgrade -i flagger ${REPO_ROOT}/charts/flagger \
16-
--wait \
1716
--namespace ingress-nginx \
1817
--set prometheus.install=true \
1918
--set meshProvider=nginx

test/e2e-smi-istio-build.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ kind load docker-image test/flagger:latest
1212

1313
echo '>>> Installing Flagger'
1414
helm upgrade -i flagger ${REPO_ROOT}/charts/flagger \
15-
--wait \
1615
--namespace istio-system \
1716
--set meshProvider=smi:istio
1817

0 commit comments

Comments
 (0)