diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d31ae5c..c0a2eed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project are documented in this file. +## 0.14.0 (2019-05-21) + +Adds support for Service Mesh Interface and [Gloo](https://docs.flagger.app/usage/gloo-progressive-delivery) ingress controller + +#### Features + +- Add support for SMI (Istio weighted traffic) [#180](https://github.com/weaveworks/flagger/pull/180) +- Add support for Gloo ingress controller (weighted traffic) [#179](https://github.com/weaveworks/flagger/pull/179) + ## 0.13.2 (2019-04-11) Fixes for Jenkins X deployments (prevent the jx GC from removing the primary instance) diff --git a/README.md b/README.md index 9e20ec4a..731acbe5 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ Flagger documentation can be found at [docs.flagger.app](https://docs.flagger.ap * [Istio A/B testing](https://docs.flagger.app/usage/ab-testing) * [App Mesh canary deployments](https://docs.flagger.app/usage/appmesh-progressive-delivery) * [NGINX ingress controller canary deployments](https://docs.flagger.app/usage/nginx-progressive-delivery) + * [Gloo Canary Deployments](https://docs.flagger.app/usage/gloo-progressive-delivery.md) * [Monitoring](https://docs.flagger.app/usage/monitoring) * [Alerting](https://docs.flagger.app/usage/alerting) * Tutorials diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 7e5fe182..bb21999b 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.13.2 + image: weaveworks/flagger:0.14.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 24d5f2b5..f05bf0e7 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.13.2 -appVersion: 0.13.2 +version: 0.14.0 +appVersion: 0.14.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 3b9e823a..43ea1907 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: weaveworks/flagger - tag: 0.13.2 + tag: 0.14.0 pullPolicy: IfNotPresent metricsServer: "http://prometheus:9090" diff --git a/docs/gitbook/SUMMARY.md b/docs/gitbook/SUMMARY.md index 59625ced..346d7c4d 100644 --- a/docs/gitbook/SUMMARY.md +++ b/docs/gitbook/SUMMARY.md @@ -16,10 +16,12 @@ * [Istio A/B Testing](usage/ab-testing.md) * [App Mesh Canary Deployments](usage/appmesh-progressive-delivery.md) * [NGINX Canary Deployments](usage/nginx-progressive-delivery.md) +* [Gloo Canary Deployments](usage/gloo-progressive-delivery.md) * [Monitoring](usage/monitoring.md) * [Alerting](usage/alerting.md) ## Tutorials +* [SMI Istio Canary Deployments](tutorials/flagger-smi-istio.md) * [Canaries with Helm charts and GitOps](tutorials/canary-helm-gitops.md) * [Zero downtime deployments](tutorials/zero-downtime-deployments.md) diff --git a/pkg/version/version.go b/pkg/version/version.go index b04a3033..1db23e44 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.13.2" +var VERSION = "0.14.0" var REVISION = "unknown"