Skip to content

Commit

Permalink
Merge pull request fluxcd#203 from weaveworks/prep-v0.15.0
Browse files Browse the repository at this point in the history
Release v0.15.0
  • Loading branch information
stefanprodan authored Jun 12, 2019
2 parents f2eaa91 + 68500dc commit 0fdbef4
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 10 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

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

## 0.15.0 (2019-06-12)

Adds support for customising the Istio [traffic policy](https://docs.flagger.app/how-it-works#istio-routing) in the canary service spec

#### Features

- Generate Istio destination rules and allow traffic policy customisation [#200](https://github.com/weaveworks/flagger/pull/200)

#### Improvements

- Update Kubernetes packages to 1.14 and use go modules instead of dep [#202](https://github.com/weaveworks/flagger/pull/202)

## 0.14.1 (2019-06-05)

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
Expand Down
2 changes: 1 addition & 1 deletion artifacts/flagger/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:0.14.1
image: weaveworks/flagger:0.15.0
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
4 changes: 2 additions & 2 deletions charts/flagger/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.14.1
appVersion: 0.14.1
version: 0.15.0
appVersion: 0.15.0
kubeVersion: ">=1.11.0-0"
engine: gotpl
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.
Expand Down
2 changes: 1 addition & 1 deletion charts/flagger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

image:
repository: weaveworks/flagger
tag: 0.14.1
tag: 0.15.0
pullPolicy: IfNotPresent

metricsServer: "http://prometheus:9090"
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

var VERSION = "0.14.1"
var VERSION = "0.15.0"
var REVISION = "unknown"
1 change: 0 additions & 1 deletion test/e2e-gloo-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ kind load docker-image test/flagger:latest

echo '>>> Installing Flagger'
helm upgrade -i flagger ${REPO_ROOT}/charts/flagger \
--wait \
--namespace gloo-system \
--set prometheus.install=true \
--set meshProvider=gloo
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-istio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -o errexit

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

Expand Down
3 changes: 1 addition & 2 deletions test/e2e-nginx-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
echo '>>> Building Flagger'
cd ${REPO_ROOT} && docker build -t test/flagger:latest . -f Dockerfile

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

echo '>>> Installing Flagger'
helm upgrade -i flagger ${REPO_ROOT}/charts/flagger \
--wait \
--namespace ingress-nginx \
--set prometheus.install=true \
--set meshProvider=nginx
Expand Down
1 change: 0 additions & 1 deletion test/e2e-smi-istio-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ kind load docker-image test/flagger:latest

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

Expand Down

0 comments on commit 0fdbef4

Please sign in to comment.