Release v1.6.4

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2021-02-26 14:59:56 +02:00
parent dfdd8cffd7
commit fd47d385c2
8 changed files with 31 additions and 6 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -2,7 +2,7 @@
image:
repository: ghcr.io/fluxcd/flagger
tag: 1.6.3
tag: 1.6.4
pullPolicy: IfNotPresent
pullSecret:

BIN
docs/logo/flagger-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@@ -9,4 +9,4 @@ resources:
images:
- name: ghcr.io/fluxcd/flagger
newName: ghcr.io/fluxcd/flagger
newTag: 1.6.3
newTag: 1.6.4

View File

@@ -16,5 +16,5 @@ limitations under the License.
package version
var VERSION = "1.6.3"
var VERSION = "1.6.4"
var REVISION = "unknown"