Skip to content

Commit 2db5573

Browse files
authored
Merge pull request #924 from fluxcd/release-1.11.0
Release v1.11.0
2 parents 873903a + 1e38220 commit 2db5573

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

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

5+
## 1.11.0
6+
7+
**Release date:** 2021-06-01
8+
9+
**Breaking change:** the minimum supported version of Kubernetes is v1.19.0.
10+
11+
This release comes with support for Kubernetes Ingress `networking.k8s.io/v1`.
12+
The Ingress from `networking.k8s.io/v1beta1` is no longer supported,
13+
affected integrations: **NGINX** and **Skipper** ingress controllers.
14+
15+
#### Improvements
16+
17+
- Upgrade Ingress to networking.k8s.io/v1
18+
[#917](https://github.com/fluxcd/flagger/pull/917)
19+
- Update Kubernetes manifests to rbac.authorization.k8s.io/v1
20+
[#920](https://github.com/fluxcd/flagger/pull/920)
21+
522
## 1.10.0
623

724
**Release date:** 2021-05-28

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

0 commit comments

Comments
 (0)