Skip to content

Commit 5d95143

Browse files
authored
Merge pull request #1058 from fluxcd/release-1.16.0
Release v1.16.0
2 parents fcc07f0 + a2c5861 commit 5d95143

File tree

7 files changed

+36
-7
lines changed

7 files changed

+36
-7
lines changed

CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22

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

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+
534
## 1.15.0
635

736
**Release date:** 2021-10-28

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN CGO_ENABLED=0 go build \
2121
-ldflags "-s -w -X github.com/fluxcd/flagger/pkg/version.REVISION=${REVISON}" \
2222
-a -o flagger ./cmd/flagger
2323

24-
FROM alpine:3.13
24+
FROM alpine:3.14
2525

2626
RUN apk --no-cache add ca-certificates
2727

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

charts/flagger/values.yaml

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

33
image:
44
repository: ghcr.io/fluxcd/flagger
5-
tag: 1.15.0
5+
tag: 1.16.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.15.0
12+
newTag: 1.16.0

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

0 commit comments

Comments
 (0)