Skip to content

Commit 7cf843d

Browse files
authored
Merge pull request #1228 from fluxcd/release-v1.22.0
Release v1.22.0
2 parents ca044d3 + a8444a6 commit 7cf843d

File tree

6 files changed

+59
-6
lines changed

6 files changed

+59
-6
lines changed

CHANGELOG.md

+53
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,59 @@
22

33
All notable changes to this project are documented in this file.
44

5+
6+
## 1.22.0
7+
8+
**Release date:** 2022-07-11
9+
10+
This release with support for KEDA ScaledObjects as an alternative to HPAs. Check the
11+
[tutorial](https://docs.flagger.app/tutorials/keda-scaledobject) to understand it's usage
12+
with Flagger.
13+
14+
The `.spec.service.appProtocol` field can now be used to specify the [`appProtocol`](https://kubernetes.io/docs/concepts/services-networking/service/#application-protocol)
15+
of the services that Flagger generates.
16+
17+
In addition, a bug related to the Contour prometheus query for when service name is overwritten
18+
along with a bug related to a Contour `HTTPProxy` annotations have been fixed.
19+
20+
Furthermore, the installation guide for Alibaba ServiceMesh has been updated.
21+
22+
#### Improvements:
23+
24+
- feat: Add an optional `appProtocol` field to `spec.service`
25+
[#1185](https://github.com/fluxcd/flagger/pull/1185)
26+
- Update Kubernetes packages to v1.24.1
27+
[#1208](https://github.com/fluxcd/flagger/pull/1208)
28+
- charts: Add namespace parameter to parameters table
29+
[#1210](https://github.com/fluxcd/flagger/pull/1210)
30+
- Introduce `ScalerReconciler` and refactor HPA reconciliation
31+
[#1211](https://github.com/fluxcd/flagger/pull/1211)
32+
- e2e: Update providers and Kubernetes to v1.23
33+
[#1212](https://github.com/fluxcd/flagger/pull/1212)
34+
- Add support for KEDA ScaledObjects as an auto scaler
35+
[#1216](https://github.com/fluxcd/flagger/pull/1216)
36+
- include Contour retryOn in the sample canary
37+
[#1223](https://github.com/fluxcd/flagger/pull/1223)
38+
39+
#### Fixes:
40+
- fix contour prom query for when service name is overwritten
41+
[#1204](https://github.com/fluxcd/flagger/pull/1204)
42+
- fix contour httproxy annotations overwrite
43+
[#1205](https://github.com/fluxcd/flagger/pull/1205)
44+
- Fix primary HPA label reconciliation
45+
[#1215](https://github.com/fluxcd/flagger/pull/1215)
46+
- fix: add finalizers to canaries
47+
[#1219](https://github.com/fluxcd/flagger/pull/1219)
48+
- typo: boostrap -> bootstrap
49+
[#1220](https://github.com/fluxcd/flagger/pull/1220)
50+
- typo: controller
51+
[#1221](https://github.com/fluxcd/flagger/pull/1221)
52+
- update guide for flagger on aliyun ASM
53+
[#1222](https://github.com/fluxcd/flagger/pull/1222)
54+
- Reintroducing empty check for metric template references.
55+
[#1224](https://github.com/fluxcd/flagger/pull/1224)
56+
57+
558
## 1.21.0
659

760
**Release date:** 2022-05-06

artifacts/flagger/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
serviceAccountName: flagger
2323
containers:
2424
- name: flagger
25-
image: ghcr.io/fluxcd/flagger:1.21.0
25+
image: ghcr.io/fluxcd/flagger:1.22.0
2626
imagePullPolicy: IfNotPresent
2727
ports:
2828
- name: http

charts/flagger/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: flagger
3-
version: 1.21.0
4-
appVersion: 1.21.0
3+
version: 1.22.0
4+
appVersion: 1.22.0
55
kubeVersion: ">=1.19.0-0"
66
engine: gotpl
77
description: Flagger is a progressive delivery operator for Kubernetes

charts/flagger/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
image:
44
repository: ghcr.io/fluxcd/flagger
5-
tag: 1.21.0
5+
tag: 1.22.0
66
pullPolicy: IfNotPresent
77
pullSecret:
88

kustomize/base/flagger/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ resources:
99
images:
1010
- name: ghcr.io/fluxcd/flagger
1111
newName: ghcr.io/fluxcd/flagger
12-
newTag: 1.21.0
12+
newTag: 1.22.0

pkg/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ limitations under the License.
1616

1717
package version
1818

19-
var VERSION = "1.21.0"
19+
var VERSION = "1.22.0"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)