Release v1.24.0

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2022-10-23 13:07:10 +03:00
parent 25ccfca835
commit d38a2406a7
11 changed files with 51 additions and 13 deletions
+38
View File
@@ -2,6 +2,44 @@
All notable changes to this project are documented in this file.
## 1.24.0
**Release date:** 2022-10-23
Starting with this version, the Flagger release artifacts are published to
GitHub Container Registry, and they are signed with Cosign and GitHub ODIC.
OCI artifacts:
- `ghcr.io/fluxcd/flagger:<version>` multi-arch container images
- `ghcr.io/fluxcd/flagger-manifest:<version>` Kubernetes manifests
- `ghcr.io/fluxcd/charts/flagger:<version>` Helm charts
To verify an OCI artifact with Cosign:
```shell
export COSIGN_EXPERIMENTAL=1
cosign verify ghcr.io/fluxcd/flagger:1.24.0
cosign verify ghcr.io/fluxcd/flagger-manifests:1.24.0
cosign verify ghcr.io/fluxcd/charts/flagger:1.24.0
```
To deploy Flagger from its OCI artifacts the GitOps way,
please see the [Flux installation guide](docs/gitbook/install/flagger-install-with-flux.md).
#### Improvements:
- docs: Add guide on how to install Flagger with Flux OCI
[#1294](https://github.com/fluxcd/flagger/pull/1294)
- ci: Publish signed Helm charts and manifests to GHCR
[#1293](https://github.com/fluxcd/flagger/pull/1293)
- ci: Sign release and containers with Cosign and GitHub OIDC
[#1292](https://github.com/fluxcd/flagger/pull/1292)
- ci: Adjust GitHub workflow permissions
[#1286](https://github.com/fluxcd/flagger/pull/1286)
- docs: Add link to Flux governance document
[#1286](https://github.com/fluxcd/flagger/pull/1286)
## 1.23.0
**Release date:** 2022-10-20
+1 -1
View File
@@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: ghcr.io/fluxcd/flagger:1.23.0
image: ghcr.io/fluxcd/flagger:1.24.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 1.23.0
appVersion: 1.23.0
version: 1.24.0
appVersion: 1.24.0
kubeVersion: ">=1.19.0-0"
engine: gotpl
description: Flagger is a progressive delivery operator for Kubernetes
+2 -2
View File
@@ -2,7 +2,7 @@
image:
repository: ghcr.io/fluxcd/flagger
tag: 1.23.0
tag: 1.24.0
pullPolicy: IfNotPresent
pullSecret:
@@ -138,7 +138,7 @@ tolerations: []
prometheus:
# to be used with ingress controllers
install: false
image: docker.io/prom/prometheus:v2.34.0
image: docker.io/prom/prometheus:v2.39.1
pullSecret:
retention: 2h
# when enabled, it will add a security context for the prometheus pod
+2 -2
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: loadtester
version: 0.25.0
appVersion: 0.25.0
version: 0.26.0
appVersion: 0.26.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.25.0
tag: 0.26.0
pullPolicy: IfNotPresent
pullSecret:
+1 -1
View File
@@ -28,7 +28,7 @@ import (
"go.uber.org/zap"
)
var VERSION = "0.25.0"
var VERSION = "0.26.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.23.0
newTag: 1.24.0
+1 -1
View File
@@ -19,7 +19,7 @@ spec:
serviceAccountName: flagger-prometheus
containers:
- name: prometheus
image: prom/prometheus:v2.34.0
image: prom/prometheus:v2.39.1
imagePullPolicy: IfNotPresent
args:
- '--storage.tsdb.retention=2h'
+1 -1
View File
@@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: loadtester
image: ghcr.io/fluxcd/flagger-loadtester:0.25.0
image: ghcr.io/fluxcd/flagger-loadtester:0.26.0
imagePullPolicy: IfNotPresent
ports:
- name: http
+1 -1
View File
@@ -16,5 +16,5 @@ limitations under the License.
package version
var VERSION = "1.23.0"
var VERSION = "1.24.0"
var REVISION = "unknown"