Skip to content

Commit 39a3898

Browse files
authored
Merge pull request #909 from fluxcd/release-v1.9.0
Release v1.9.0
2 parents 41e427d + 9372cf9 commit 39a3898

File tree

6 files changed

+29
-7
lines changed

6 files changed

+29
-7
lines changed

CHANGELOG.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,31 @@
22

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

5+
## 1.9.0
6+
7+
**Release date:** 2021-05-14
8+
9+
This release comes with improvements to the [Gloo Edge](https://docs.flagger.app/tutorials/gloo-progressive-delivery) integration.
10+
11+
Starting with this version, Flagger no longer requires Gloo discovery to be enabled.
12+
Flagger generated the Gloo upstream objects on its own and optionally it can use an
13+
existing upstream (specified with `.spec.upstreamRef`) as a template.
14+
15+
#### Features
16+
17+
- Gloo: Create gloo upstreams from non-discovered services
18+
[#894](https://github.com/fluxcd/flagger/pull/894)
19+
- Gloo Upstream Ref for Upstream Config
20+
[#908](https://github.com/fluxcd/flagger/pull/908)
21+
22+
#### Improvements
23+
24+
- Adjusted Nginx ingress canary headers on init and promotion
25+
[#907](https://github.com/fluxcd/flagger/pull/907)
26+
527
## 1.8.0
628

7-
**Release date:** 2021-03-23
29+
**Release date:** 2021-04-29
830

931
This release comes with support for the SMI `v1alpha2` and `v1alpha3` TrafficSplit APIs.
1032

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.8.0
25+
image: ghcr.io/fluxcd/flagger:1.9.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.8.0
4-
appVersion: 1.8.0
3+
version: 1.9.0
4+
appVersion: 1.9.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.8.0
5+
tag: 1.9.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.8.0
12+
newTag: 1.9.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.8.0"
19+
var VERSION = "1.9.0"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)