mirror of
https://github.com/fluxcd/flagger.git
synced 2026-04-15 06:57:34 +00:00
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
image:
|
||||
repository: ghcr.io/fluxcd/flagger
|
||||
tag: 1.22.2
|
||||
tag: 1.23.0
|
||||
pullPolicy: IfNotPresent
|
||||
pullSecret:
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -2,7 +2,7 @@ replicaCount: 1
|
||||
|
||||
image:
|
||||
repository: ghcr.io/fluxcd/flagger-loadtester
|
||||
tag: 0.24.0
|
||||
tag: 0.25.0
|
||||
pullPolicy: IfNotPresent
|
||||
pullSecret:
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ import (
|
||||
"go.uber.org/zap"
|
||||
)
|
||||
|
||||
var VERSION = "0.24.0"
|
||||
var VERSION = "0.25.0"
|
||||
var (
|
||||
logLevel string
|
||||
port string
|
||||
|
||||
@@ -9,4 +9,4 @@ resources:
|
||||
images:
|
||||
- name: ghcr.io/fluxcd/flagger
|
||||
newName: ghcr.io/fluxcd/flagger
|
||||
newTag: 1.22.2
|
||||
newTag: 1.23.0
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -16,5 +16,5 @@ limitations under the License.
|
||||
|
||||
package version
|
||||
|
||||
var VERSION = "1.22.2"
|
||||
var VERSION = "1.23.0"
|
||||
var REVISION = "unknown"
|
||||
|
||||
Reference in New Issue
Block a user