File tree 11 files changed +38
-9
lines changed
11 files changed +38
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project are documented in this file.
4
4
5
+ ## 1.15.0
6
+
7
+ ** Release date:** 2021-10-28
8
+
9
+ This release comes with support for NGINX ingress canary metrics.
10
+ The nginx-ingress minimum supported version is now v1.0.2.
11
+
12
+ Starting with version, Flagger will use the ` spec.service.apex.annotations `
13
+ to annotate the generated apex VirtualService, TrafficSplit or HTTPProxy.
14
+
15
+ #### Features
16
+
17
+ - Use nginx controller canary metrics
18
+ [ #1023 ] ( https://github.com/fluxcd/flagger/pull/1023 )
19
+ - Add metadata annotations to generated apex objects
20
+ [ #1034 ] ( https://github.com/fluxcd/flagger/pull/1034 )
21
+
22
+ #### Improvements
23
+
24
+ - Update load tester binaries (CVEs fix)
25
+ [ #1038 ] ( https://github.com/fluxcd/flagger/pull/1038 )
26
+ - Add podLabels to load tester Helm chart
27
+ [ #1036 ] ( https://github.com/fluxcd/flagger/pull/1036 )
28
+
5
29
## 1.14.0
6
30
7
31
** Release date:** 2021-09-20
Original file line number Diff line number Diff line change @@ -1108,6 +1108,7 @@ spec:
1108
1108
- cloudwatch
1109
1109
- newrelic
1110
1110
- graphite
1111
+ - dynatrace
1111
1112
address :
1112
1113
description : API address of this provider
1113
1114
type : string
Original file line number Diff line number Diff line change 22
22
serviceAccountName : flagger
23
23
containers :
24
24
- name : flagger
25
- image : ghcr.io/fluxcd/flagger:1.14 .0
25
+ image : ghcr.io/fluxcd/flagger:1.15 .0
26
26
imagePullPolicy : IfNotPresent
27
27
ports :
28
28
- name : http
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : flagger
3
- version : 1.14 .0
4
- appVersion : 1.14 .0
3
+ version : 1.15 .0
4
+ appVersion : 1.15 .0
5
5
kubeVersion : " >=1.16.0-0"
6
6
engine : gotpl
7
7
description : Flagger is a progressive delivery operator for Kubernetes
Original file line number Diff line number Diff line change 2
2
3
3
image :
4
4
repository : ghcr.io/fluxcd/flagger
5
- tag : 1.14 .0
5
+ tag : 1.15 .0
6
6
pullPolicy : IfNotPresent
7
7
pullSecret :
8
8
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : loadtester
3
3
version : 0.20.0
4
- appVersion : 0.18 .0
4
+ appVersion : 0.19 .0
5
5
kubeVersion : " >=1.11.0-0"
6
6
engine : gotpl
7
7
description : Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ replicaCount: 1
2
2
3
3
image :
4
4
repository : ghcr.io/fluxcd/flagger-loadtester
5
- tag : 0.18 .0
5
+ tag : 0.19 .0
6
6
pullPolicy : IfNotPresent
7
7
8
8
podLabels : {}
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import (
27
27
"go.uber.org/zap"
28
28
)
29
29
30
- var VERSION = "0.18.1 "
30
+ var VERSION = "0.19.0 "
31
31
var (
32
32
logLevel string
33
33
port string
Original file line number Diff line number Diff line change @@ -184,6 +184,10 @@ spec:
184
184
test: "test"
185
185
` ` `
186
186
187
+ Note that the `apex` annotations are added to both the generated Kubernetes Service and the
188
+ generated service mesh/ingress object. This allows using external-dns with Istio `VirtualServices`
189
+ and `TraefikServices`.
190
+
187
191
Besides port mapping and metadata, the service specification can
188
192
contain URI match and rewrite rules, timeout and retry polices :
189
193
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ resources:
9
9
images :
10
10
- name : ghcr.io/fluxcd/flagger
11
11
newName : ghcr.io/fluxcd/flagger
12
- newTag : 1.14 .0
12
+ newTag : 1.15 .0
Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ limitations under the License.
16
16
17
17
package version
18
18
19
- var VERSION = "1.14 .0"
19
+ var VERSION = "1.15 .0"
20
20
var REVISION = "unknown"
You can’t perform that action at this time.
0 commit comments