Skip to content

Commit 210e211

Browse files
authored
Merge pull request #1138 from fluxcd/release-1.19.0
Release v1.19.0
2 parents 531893b + 0a0c383 commit 210e211

File tree

10 files changed

+39
-13
lines changed

10 files changed

+39
-13
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

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

5+
## 1.19.0
6+
7+
**Release date:** 2022-03-14
8+
9+
This release comes with support for Kubernetes [Gateway API](https://gateway-api.sigs.k8s.io/) v1alpha2.
10+
For more details see the [Gateway API Progressive Delivery tutorial](https://docs.flagger.app/tutorials/gatewayapi-progressive-delivery).
11+
12+
#### Features
13+
14+
- Add Gateway API as a provider
15+
[#1108](https://github.com/fluxcd/flagger/pull/1108)
16+
17+
#### Improvements
18+
19+
- Add arm64 support for loadtester
20+
[#1128](https://github.com/fluxcd/flagger/pull/1128)
21+
- Restrict source namespaces in flagger-loadtester
22+
[#1119](https://github.com/fluxcd/flagger/pull/1119)
23+
- Remove support for Helm v2 in loadtester
24+
[#1130](https://github.com/fluxcd/flagger/pull/1130)
25+
26+
#### Fixes
27+
28+
- Fix potential canary finalizer duplication
29+
[#1125](https://github.com/fluxcd/flagger/pull/1125)
30+
- Use the primary replicas when scaling up the canary (no hpa)
31+
[#1110](https://github.com/fluxcd/flagger/pull/1110)
32+
533
## 1.18.0
634

735
**Release date:** 2022-02-14

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.18.0
25+
image: ghcr.io/fluxcd/flagger:1.19.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.18.0
4-
appVersion: 1.18.0
3+
version: 1.19.0
4+
appVersion: 1.19.0
55
kubeVersion: ">=1.16.0-0"
66
engine: gotpl
77
description: Flagger is a progressive delivery operator for Kubernetes

charts/flagger/values.yaml

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

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

@@ -138,7 +138,7 @@ tolerations: []
138138
prometheus:
139139
# to be used with ingress controllers
140140
install: false
141-
image: docker.io/prom/prometheus:v2.32.1
141+
image: docker.io/prom/prometheus:v2.33.5
142142
pullSecret:
143143
retention: 2h
144144
# when enabled, it will add a security context for the prometheus pod

charts/loadtester/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: loadtester
3-
version: 0.21.0
4-
appVersion: 0.21.0
3+
version: 0.22.0
4+
appVersion: 0.22.0
55
kubeVersion: ">=1.11.0-0"
66
engine: gotpl
77
description: Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook.

charts/loadtester/values.yaml

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

33
image:
44
repository: ghcr.io/fluxcd/flagger-loadtester
5-
tag: 0.21.0
5+
tag: 0.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.18.0
12+
newTag: 1.19.0

kustomize/base/prometheus/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
serviceAccountName: flagger-prometheus
2020
containers:
2121
- name: prometheus
22-
image: prom/prometheus:v2.32.1
22+
image: prom/prometheus:v2.33.5
2323
imagePullPolicy: IfNotPresent
2424
args:
2525
- '--storage.tsdb.retention=2h'

pkg/canary/deployment_controller.go

-2
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,6 @@ func (c *DeploymentController) reconcilePrimaryHpa(cd *flaggerv1.Canary, init bo
399399
diffLabels := cmp.Diff(hpa.ObjectMeta.Labels, primaryHpa.ObjectMeta.Labels)
400400
diffAnnotations := cmp.Diff(hpa.ObjectMeta.Annotations, primaryHpa.ObjectMeta.Annotations)
401401
if diffMetrics != "" || diffBehavior != "" || diffLabels != "" || diffAnnotations != "" || int32Default(hpaSpec.MinReplicas) != int32Default(primaryHpa.Spec.MinReplicas) || hpaSpec.MaxReplicas != primaryHpa.Spec.MaxReplicas {
402-
fmt.Println(diffMetrics, diffBehavior, hpaSpec.MinReplicas, primaryHpa.Spec.MinReplicas, hpaSpec.MaxReplicas, primaryHpa.Spec.MaxReplicas)
403-
404402
err = retry.RetryOnConflict(retry.DefaultRetry, func() error {
405403
primaryHpa, err := c.kubeClient.AutoscalingV2beta2().HorizontalPodAutoscalers(cd.Namespace).Get(context.TODO(), primaryHpaName, metav1.GetOptions{})
406404
if err != nil {

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

0 commit comments

Comments
 (0)