From 9974968dee9d7ef3f2afc9de1a476a2c5e5c2b5f Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Wed, 12 Jun 2019 14:46:29 +0300 Subject: [PATCH 1/3] Update Istio e2e to 1.1.8 --- test/e2e-istio.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e-istio.sh b/test/e2e-istio.sh index cf6bb992..933eaee2 100755 --- a/test/e2e-istio.sh +++ b/test/e2e-istio.sh @@ -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")" From 12a29f1939b5234317b52547faed0eadb2183c78 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Wed, 12 Jun 2019 15:38:56 +0300 Subject: [PATCH 2/3] Release v0.15.0 --- CHANGELOG.md | 12 ++++++++++++ artifacts/flagger/deployment.yaml | 2 +- charts/flagger/Chart.yaml | 4 ++-- charts/flagger/values.yaml | 2 +- pkg/version/version.go | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 167edf47..34603f5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 7e8b18c0..b030920d 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -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 diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 83cc761d..890068ba 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -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. diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index 1e8d74bc..9e34eaa5 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.14.1 + tag: 0.15.0 pullPolicy: IfNotPresent metricsServer: "http://prometheus:9090" diff --git a/pkg/version/version.go b/pkg/version/version.go index 1ecd5904..13ecc04a 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.14.1" +var VERSION = "0.15.0" var REVISION = "unknown" From 68500dc579b969af52a093419d539f3693b98938 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Wed, 12 Jun 2019 16:33:09 +0300 Subject: [PATCH 3/3] Fix e2e helm install --- test/e2e-gloo-build.sh | 1 - test/e2e-nginx-build.sh | 3 +-- test/e2e-smi-istio-build.sh | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/test/e2e-gloo-build.sh b/test/e2e-gloo-build.sh index 8799082d..573ae096 100755 --- a/test/e2e-gloo-build.sh +++ b/test/e2e-gloo-build.sh @@ -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 diff --git a/test/e2e-nginx-build.sh b/test/e2e-nginx-build.sh index 6ae5449a..38e540dc 100755 --- a/test/e2e-nginx-build.sh +++ b/test/e2e-nginx-build.sh @@ -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 diff --git a/test/e2e-smi-istio-build.sh b/test/e2e-smi-istio-build.sh index 06b28ff1..b329fd5c 100755 --- a/test/e2e-smi-istio-build.sh +++ b/test/e2e-smi-istio-build.sh @@ -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