File tree 7 files changed +36
-7
lines changed
7 files changed +36
-7
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.16.0
6
+
7
+ ** Release date:** 2021-11-22
8
+
9
+ This release comes with a new API field called ` primaryReadyThreshold `
10
+ that allows setting the percentage of pods that need to be available
11
+ to consider the primary deployment as ready.
12
+
13
+ #### Features
14
+
15
+ - Allow configuring threshold for primary
16
+ [ #1048 ] ( https://github.com/fluxcd/flagger/pull/1048 )
17
+
18
+ #### Improvements
19
+
20
+ - Append to list of ownerReferences for primary configmaps and secrets
21
+ [ #1052 ] ( https://github.com/fluxcd/flagger/pull/1052 )
22
+ - Prevent Flux from overriding Flagger managed objects
23
+ [ #1049 ] ( https://github.com/fluxcd/flagger/pull/1049 )
24
+ - Add warning in docs about ExternalDNS + Istio configuration
25
+ [ #1044 ] ( https://github.com/fluxcd/flagger/pull/1044 )
26
+
27
+ #### Fixes
28
+
29
+ - Mark ` CanaryMetric.Threshold ` as omitempty
30
+ [ #1047 ] ( https://github.com/fluxcd/flagger/pull/1047 )
31
+ - Replace ` ioutil ` in testing of gchat
32
+ [ #1045 ] ( https://github.com/fluxcd/flagger/pull/1045 )
33
+
5
34
## 1.15.0
6
35
7
36
** Release date:** 2021-10-28
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ RUN CGO_ENABLED=0 go build \
21
21
-ldflags "-s -w -X github.com/fluxcd/flagger/pkg/version.REVISION=${REVISON}" \
22
22
-a -o flagger ./cmd/flagger
23
23
24
- FROM alpine:3.13
24
+ FROM alpine:3.14
25
25
26
26
RUN apk --no-cache add ca-certificates
27
27
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.15 .0
25
+ image : ghcr.io/fluxcd/flagger:1.16 .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.15 .0
4
- appVersion : 1.15 .0
3
+ version : 1.16 .0
4
+ appVersion : 1.16 .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.15 .0
5
+ tag : 1.16 .0
6
6
pullPolicy : IfNotPresent
7
7
pullSecret :
8
8
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.15 .0
12
+ newTag : 1.16 .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.15 .0"
19
+ var VERSION = "1.16 .0"
20
20
var REVISION = "unknown"
You can’t perform that action at this time.
0 commit comments