diff --git a/CHANGELOG.md b/CHANGELOG.md index 07ab1be4..e570ec05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ All notable changes to this project are documented in this file. +## 1.6.4 + +**Release date:** 2021-02-26 + +This release comes with a bug fix to the AppMesh integration +when using multiple backends. + +#### Improvements + +- Consolidate logos and add project name logos + [#829](https://github.com/fluxcd/flagger/pull/829) +- chart: add env option to loadtester + [#821](https://github.com/fluxcd/flagger/pull/821) +- chart: Added PodDisruptionBudget for the loadtester + [#819](https://github.com/fluxcd/flagger/pull/819) + +#### Fixes + +- Fix AWS AppMesh issue when providing multiple backends + [#831](https://github.com/fluxcd/flagger/pull/831) + ## 1.6.3 **Release date:** 2021-02-15 diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 060f5fb2..4cda5295 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.6.3 + image: ghcr.io/fluxcd/flagger:1.6.4 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 330d55c3..362e894e 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.6.3 -appVersion: 1.6.3 +version: 1.6.4 +appVersion: 1.6.4 kubeVersion: ">=1.16.0-0" engine: gotpl description: Flagger is a progressive delivery operator for Kubernetes @@ -21,5 +21,6 @@ keywords: - gloo - contour - nginx + - traefik - gitops - canary diff --git a/charts/flagger/README.md b/charts/flagger/README.md index d7a53c0a..f36d8dd8 100644 --- a/charts/flagger/README.md +++ b/charts/flagger/README.md @@ -11,6 +11,9 @@ Flagger works with service mesh solutions (Istio, Linkerd, AWS App Mesh) and wit (NGINX, Skipper, Gloo, Contour, Traefik). Flagger can be configured to send alerts to various chat platforms such as Slack, Microsoft Teams, Discord and Rocket. +Flagger is a [Cloud Native Computing Foundation](https://cncf.io/) project +and part of [Flux](https://fluxcd.io) family of GitOps tools. + ## Prerequisites * Kubernetes >= 1.16 diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index 244240e2..b35bb1aa 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.6.3 + tag: 1.6.4 pullPolicy: IfNotPresent pullSecret: diff --git a/docs/logo/flagger-icon.png b/docs/logo/flagger-icon.png new file mode 100644 index 00000000..7e7c6c88 Binary files /dev/null and b/docs/logo/flagger-icon.png differ diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index 39ed3b56..1a9edc48 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.6.3 + newTag: 1.6.4 diff --git a/pkg/version/version.go b/pkg/version/version.go index 0eaada5d..fb33f2ef 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -16,5 +16,5 @@ limitations under the License. package version -var VERSION = "1.6.3" +var VERSION = "1.6.4" var REVISION = "unknown"