Skip to content

Commit 686e8a3

Browse files
authored
Merge pull request #1331 from fluxcd/release-v1.27.0
Release v1.27.0
2 parents 26518ce + 0aecddb commit 686e8a3

File tree

7 files changed

+38
-16
lines changed

7 files changed

+38
-16
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

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

5+
## 1.27.0
6+
7+
**Release date:** 2022-12-15
8+
9+
This release comes with support for Apachae APISIX. For more details see the
10+
[tutorial](https://fluxcd.io/flagger/tutorials/apisix-progressive-delivery).
11+
12+
#### Improvements
13+
14+
- [apisix] Implement router interface and observer interface
15+
[#1281](https://github.com/fluxcd/flagger/pull/1281)
16+
- Bump stefanprodan/helm-gh-pages from 1.6.0 to 1.7.0
17+
[#1326](https://github.com/fluxcd/flagger/pull/1326)
18+
- Release loadtester v0.28.0
19+
[#1328](https://github.com/fluxcd/flagger/pull/1328)
20+
21+
#### Fixes
22+
23+
- Update release docs
24+
[#1324](https://github.com/fluxcd/flagger/pull/1324)
25+
526
## 1.26.0
627

728
**Release date:** 2022-11-23

README.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Flagger documentation can be found at [fluxcd.io/flagger](https://fluxcd.io/flag
4343
* [NGINX Ingress](https://fluxcd.io/flagger/tutorials/nginx-progressive-delivery)
4444
* [Skipper](https://fluxcd.io/flagger/tutorials/skipper-progressive-delivery)
4545
* [Traefik](https://fluxcd.io/flagger/tutorials/traefik-progressive-delivery)
46+
* [Gateway API](https://fluxcd.io/flagger/tutorials/gatewayapi-progressive-delivery/)
4647
* [Kubernetes Blue/Green](https://fluxcd.io/flagger/tutorials/kubernetes-blue-green)
4748

4849
### Adopters
@@ -197,16 +198,16 @@ For more details on how the canary analysis and promotion works please [read the
197198
198199
**Ingress**
199200
200-
| Feature | Contour | Gloo | NGINX | Skipper | Traefik |
201-
|-------------------------------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
202-
| Canary deployments (weighted traffic) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
203-
| A/B testing (headers and cookies routing) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_minus_sign: | :heavy_minus_sign: |
204-
| Blue/Green deployments (traffic switch) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
205-
| Webhooks (acceptance/load testing) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
206-
| Manual gating (approve/pause/resume) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
207-
| Request success rate check (L7 metric) | :heavy_check_mark: | :heavy_check_mark: | :heavy_minus_sign: | :heavy_check_mark: | :heavy_check_mark: |
208-
| Request duration check (L7 metric) | :heavy_check_mark: | :heavy_check_mark: | :heavy_minus_sign: | :heavy_check_mark: | :heavy_check_mark: |
209-
| Custom metric checks | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
201+
| Feature | Contour | Gloo | NGINX | Skipper | Traefik | Apache APISIX |
202+
|-------------------------------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
203+
| Canary deployments (weighted traffic) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
204+
| A/B testing (headers and cookies routing) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_minus_sign: | :heavy_minus_sign: | :heavy_minus_sign: |
205+
| Blue/Green deployments (traffic switch) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
206+
| Webhooks (acceptance/load testing) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
207+
| Manual gating (approve/pause/resume) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
208+
| Request success rate check (L7 metric) | :heavy_check_mark: | :heavy_check_mark: | :heavy_minus_sign: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
209+
| Request duration check (L7 metric) | :heavy_check_mark: | :heavy_check_mark: | :heavy_minus_sign: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
210+
| Custom metric checks | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
210211
211212
**Networking Interface**
212213

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.26.0
25+
image: ghcr.io/fluxcd/flagger:1.27.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.26.0
4-
appVersion: 1.26.0
3+
version: 1.27.0
4+
appVersion: 1.27.0
55
kubeVersion: ">=1.19.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.26.0
5+
tag: 1.27.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.26.0
12+
newTag: 1.27.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.26.0"
19+
var VERSION = "1.27.0"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)