diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f57c2b7..c6095b61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project are documented in this file. +## 1.6.2 + +**Release date:** 2021-01-28 + +This release comes with support for Kubernetes anti-affinity rules. + +#### Improvements + +- Support for adding `-primary` suffix to Anti-Affinity values + [#788](https://github.com/fluxcd/flagger/pull/788) + +#### Fixes + +- Add missing alerts section to Canary CRD schema + [#794](https://github.com/fluxcd/flagger/pull/794) + ## 1.6.1 **Release date:** 2021-01-19 diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 3a0533f6..0350057a 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.1 + image: ghcr.io/fluxcd/flagger:1.6.2 imagePullPolicy: IfNotPresent ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index deee3e5d..4311a0b2 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 1.6.1 -appVersion: 1.6.1 +version: 1.6.2 +appVersion: 1.6.2 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 e34c9d8c..fcb62d76 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: ghcr.io/fluxcd/flagger - tag: 1.6.1 + tag: 1.6.2 pullPolicy: IfNotPresent pullSecret: diff --git a/kustomize/base/flagger/kustomization.yaml b/kustomize/base/flagger/kustomization.yaml index ea7947b9..217aaf27 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.1 + newTag: 1.6.2 diff --git a/pkg/version/version.go b/pkg/version/version.go index 128f2637..82975dc1 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.1" +var VERSION = "1.6.2" var REVISION = "unknown"