Skip to content

Commit 381c19b

Browse files
authored
Merge pull request #1301 from fluxcd/release-v1.24.1
Release v1.24.1
2 parents a7df345 + 50f9255 commit 381c19b

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

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

5+
## 1.24.1
6+
7+
**Release date:** 2022-10-26
8+
9+
This release comes with a fix to Gloo routing when a custom service name id used.
10+
11+
In addition, the Gloo ingress end-to-end testing was updated to Gloo Helm chart v1.12.31.
12+
13+
#### Fixes:
14+
15+
- fix(gloo): Use correct route table name in case service name was overwritten
16+
[#1300](https://github.com/fluxcd/flagger/pull/1300)
17+
518
## 1.24.0
619

720
**Release date:** 2022-10-23

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ When submitting bug reports please include as many details as possible:
260260
Here is a list of good entry points into our community, how we stay in touch and how you can meet us as a team.
261261
262262
- Slack: Join in and talk to us in the `#flagger` channel on [CNCF Slack](https://slack.cncf.io/).
263-
- Meetings: We run weekly, public meetings - join one of the upcoming dev meetings from the [Flux calendar](https://fluxcd.io/#calendar).
263+
- Public meetings: We run weekly meetings - join one of the upcoming dev meetings from the [Flux calendar](https://fluxcd.io/#calendar).
264264
- Blog: Stay up to date with the latest news on [the Flux blog](https://fluxcd.io/blog/).
265265
- Mailing list: To be updated on Flux and Flagger progress regularly, please [join the flux-dev mailing list](https://lists.cncf.io/g/cncf-flux-dev).
266266

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.24.0
25+
image: ghcr.io/fluxcd/flagger:1.24.1
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.24.0
4-
appVersion: 1.24.0
3+
version: 1.24.1
4+
appVersion: 1.24.1
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.24.0
5+
tag: 1.24.1
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.24.0
12+
newTag: 1.24.1

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.24.0"
19+
var VERSION = "1.24.1"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)