Release v1.16.0

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan 2021-11-22 14:53:54 +02:00
parent fcc07f02b0
commit a2c5861ca5
No known key found for this signature in database
GPG Key ID: 3299AEB0E4085BAF
7 changed files with 36 additions and 7 deletions

View File

@ -2,6 +2,35 @@
All notable changes to this project are documented in this file. All notable changes to this project are documented in this file.
## 1.16.0
**Release date:** 2021-11-22
This release comes with a new API field called `primaryReadyThreshold`
that allows setting the percentage of pods that need to be available
to consider the primary deployment as ready.
#### Features
- Allow configuring threshold for primary
[#1048](https://github.com/fluxcd/flagger/pull/1048)
#### Improvements
- Append to list of ownerReferences for primary configmaps and secrets
[#1052](https://github.com/fluxcd/flagger/pull/1052)
- Prevent Flux from overriding Flagger managed objects
[#1049](https://github.com/fluxcd/flagger/pull/1049)
- Add warning in docs about ExternalDNS + Istio configuration
[#1044](https://github.com/fluxcd/flagger/pull/1044)
#### Fixes
- Mark `CanaryMetric.Threshold` as omitempty
[#1047](https://github.com/fluxcd/flagger/pull/1047)
- Replace `ioutil` in testing of gchat
[#1045](https://github.com/fluxcd/flagger/pull/1045)
## 1.15.0 ## 1.15.0
**Release date:** 2021-10-28 **Release date:** 2021-10-28

View File

@ -21,7 +21,7 @@ RUN CGO_ENABLED=0 go build \
-ldflags "-s -w -X github.com/fluxcd/flagger/pkg/version.REVISION=${REVISON}" \ -ldflags "-s -w -X github.com/fluxcd/flagger/pkg/version.REVISION=${REVISON}" \
-a -o flagger ./cmd/flagger -a -o flagger ./cmd/flagger
FROM alpine:3.13 FROM alpine:3.14
RUN apk --no-cache add ca-certificates RUN apk --no-cache add ca-certificates

View File

@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger serviceAccountName: flagger
containers: containers:
- name: flagger - name: flagger
image: ghcr.io/fluxcd/flagger:1.15.0 image: ghcr.io/fluxcd/flagger:1.16.0
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- name: http - name: http

View File

@ -1,7 +1,7 @@
apiVersion: v1 apiVersion: v1
name: flagger name: flagger
version: 1.15.0 version: 1.16.0
appVersion: 1.15.0 appVersion: 1.16.0
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
engine: gotpl engine: gotpl
description: Flagger is a progressive delivery operator for Kubernetes description: Flagger is a progressive delivery operator for Kubernetes

View File

@ -2,7 +2,7 @@
image: image:
repository: ghcr.io/fluxcd/flagger repository: ghcr.io/fluxcd/flagger
tag: 1.15.0 tag: 1.16.0
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
pullSecret: pullSecret:

View File

@ -9,4 +9,4 @@ resources:
images: images:
- name: ghcr.io/fluxcd/flagger - name: ghcr.io/fluxcd/flagger
newName: ghcr.io/fluxcd/flagger newName: ghcr.io/fluxcd/flagger
newTag: 1.15.0 newTag: 1.16.0

View File

@ -16,5 +16,5 @@ limitations under the License.
package version package version
var VERSION = "1.15.0" var VERSION = "1.16.0"
var REVISION = "unknown" var REVISION = "unknown"