Release v1.23.0

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2022-10-20 12:59:54 +03:00
parent 283de16660
commit 08d7520458
10 changed files with 39 additions and 11 deletions
+28
View File
@@ -2,6 +2,34 @@
All notable changes to this project are documented in this file.
## 1.23.0
**Release date:** 2022-10-20
This release comes with support for Slack bot token authentication.
#### Improvements:
- alerts: Add support for Slack bot token authentication
[#1270](https://github.com/fluxcd/flagger/pull/1270)
- loadtester: logCmdOutput to logger instead of stdout
[#1267](https://github.com/fluxcd/flagger/pull/1267)
- helm: Add app.kubernetes.io/version label to chart
[#1264](https://github.com/fluxcd/flagger/pull/1264)
- Update Go to 1.19
[#1264](https://github.com/fluxcd/flagger/pull/1264)
- Update Kubernetes packages to v1.25.3
[#1283](https://github.com/fluxcd/flagger/pull/1283)
- Bump Contour to v1.22 in e2e tests
[#1282](https://github.com/fluxcd/flagger/pull/1282)
#### Fixes:
- gatewayapi: Fix reconciliation of nil hostnames
[#1276](https://github.com/fluxcd/flagger/pull/1276)
- alerts: Include cluster name in all alerts
[#1275](https://github.com/fluxcd/flagger/pull/1275)
## 1.22.2
**Release date:** 2022-08-29
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: ghcr.io/fluxcd/flagger:1.22.2
image: ghcr.io/fluxcd/flagger:1.23.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 1.22.2
appVersion: 1.22.2
version: 1.23.0
appVersion: 1.23.0
kubeVersion: ">=1.19.0-0"
engine: gotpl
description: Flagger is a progressive delivery operator for Kubernetes
+1 -1
View File
@@ -2,7 +2,7 @@
image:
repository: ghcr.io/fluxcd/flagger
tag: 1.22.2
tag: 1.23.0
pullPolicy: IfNotPresent
pullSecret:
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: loadtester
version: 0.24.0
appVersion: 0.24.0
version: 0.25.0
appVersion: 0.25.0
kubeVersion: ">=1.19.0-0"
engine: gotpl
description: Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook.
+1 -1
View File
@@ -2,7 +2,7 @@ replicaCount: 1
image:
repository: ghcr.io/fluxcd/flagger-loadtester
tag: 0.24.0
tag: 0.25.0
pullPolicy: IfNotPresent
pullSecret:
+1 -1
View File
@@ -28,7 +28,7 @@ import (
"go.uber.org/zap"
)
var VERSION = "0.24.0"
var VERSION = "0.25.0"
var (
logLevel string
port string
+1 -1
View File
@@ -9,4 +9,4 @@ resources:
images:
- name: ghcr.io/fluxcd/flagger
newName: ghcr.io/fluxcd/flagger
newTag: 1.22.2
newTag: 1.23.0
+1 -1
View File
@@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: loadtester
image: ghcr.io/fluxcd/flagger-loadtester:0.24.0
image: ghcr.io/fluxcd/flagger-loadtester:0.25.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -16,5 +16,5 @@ limitations under the License.
package version
var VERSION = "1.22.2"
var VERSION = "1.23.0"
var REVISION = "unknown"