From 38adc513a6d0c1020de63f16a8487335b6809281 Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Wed, 25 Aug 2021 11:46:30 +0300 Subject: [PATCH] Release v1.13.0 Signed-off-by: Stefan Prodan --- CHANGELOG.md | 43 +++++++++++++++++++++++ artifacts/flagger/deployment.yaml | 2 +- charts/flagger/Chart.yaml | 4 +-- charts/flagger/values.yaml | 4 +-- charts/grafana/Chart.yaml | 2 +- kustomize/base/flagger/kustomization.yaml | 2 +- pkg/version/version.go | 2 +- 7 files changed, 51 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc7bebdc..823f99b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,49 @@ All notable changes to this project are documented in this file. +## 1.13.0 + +**Release date:** 2021-08-25 + +This release comes with support for [Open Service Mesh](https://openservicemesh.io). +For more details see the [OSM Progressive Delivery tutorial](https://docs.flagger.app/tutorials/osm-progressive-delivery). + +Starting with this version, Flagger container images are signed with +[sigstore/cosign](https://github.com/sigstore/cosign), for more details see the +[Flagger cosign docs](https://github.com/fluxcd/flagger/blob/main/cosign/README.md). + +#### Features + +- Support OSM progressive traffic shifting in Flagger + [#955](https://github.com/fluxcd/flagger/pull/955) + [#977](https://github.com/fluxcd/flagger/pull/977) +- Add support for Google Chat alerts + [#953](https://github.com/fluxcd/flagger/pull/953) + +#### Improvements + +- Sign Flagger container images with cosign + [#983](https://github.com/fluxcd/flagger/pull/983) +- Update Gloo APIs and e2e tests to Gloo v1.8.9 + [#982](https://github.com/fluxcd/flagger/pull/982) +- Update e2e tests to Istio v1.11, Contour v1.18, Linkerd v2.10.2 and NGINX v0.49.0 + [#979](https://github.com/fluxcd/flagger/pull/979) +- Update e2e tests to Traefik to 2.4.9 + [#960](https://github.com/fluxcd/flagger/pull/960) +- Add support for volumes/volumeMounts in loadtester Helm chart + [#975](https://github.com/fluxcd/flagger/pull/975) +- Add extra podLabels options to Flagger Helm Chart + [#966](https://github.com/fluxcd/flagger/pull/966) + +#### Fixes + +- Fix for the http client proxy overriding the default client + [#943](https://github.com/fluxcd/flagger/pull/943) +- Drop deprecated io/ioutil + [#964](https://github.com/fluxcd/flagger/pull/964) +- Remove problematic nulls from Grafana dashboard + [#952](https://github.com/fluxcd/flagger/pull/952) + ## 1.12.1 **Release date:** 2021-06-17 diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index cdc895e7..8e768172 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: ghcr.io/fluxcd/flagger:1.12.1 + image: ghcr.io/fluxcd/flagger:1.13.0 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 6e9324fb..b31750fc 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.12.1 -appVersion: 1.12.1 +version: 1.13.0 +appVersion: 1.13.0 kubeVersion: ">=1.16.0-0" engine: gotpl description: Flagger is a progressive delivery operator for Kubernetes diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index db1680f1..3d7b96df 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.12.1 + tag: 1.13.0 pullPolicy: IfNotPresent pullSecret: @@ -161,4 +161,4 @@ podDisruptionBudget: enabled: false minAvailable: 1 -podLabels: {} \ No newline at end of file +podLabels: {} diff --git a/charts/grafana/Chart.yaml b/charts/grafana/Chart.yaml index 5682c486..0f98e685 100644 --- a/charts/grafana/Chart.yaml +++ b/charts/grafana/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: grafana -version: 1.5.0 +version: 1.6.0 appVersion: 7.2.0 description: Grafana dashboards for monitoring Flagger canary deployments icon: https://raw.githubusercontent.com/fluxcd/flagger/main/docs/logo/flagger-icon.png diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 33484d98..2895a4f6 100644 --- a/kustomize/base/flagger/kustomization.yaml +++ b/kustomize/base/flagger/kustomization.yaml @@ -9,4 +9,4 @@ resources: images: - name: ghcr.io/fluxcd/flagger newName: ghcr.io/fluxcd/flagger - newTag: 1.12.1 + newTag: 1.13.0 diff --git a/pkg/version/version.go b/pkg/version/version.go index f5fbd166..3ec4c45a 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -16,5 +16,5 @@ limitations under the License. package version -var VERSION = "1.12.1" +var VERSION = "1.13.0" var REVISION = "unknown"