Skip to content

Commit 1574e29

Browse files
authored
Merge pull request #1354 from fluxcd/release-1.28.0
Release v1.28.0
2 parents 534196a + 4a34158 commit 1574e29

File tree

13 files changed

+36
-15
lines changed

13 files changed

+36
-15
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.28.0
6+
7+
**Release date:** 2023-01-26
8+
9+
This release comes with support for setting a different autoscaling
10+
configuration for the primary workload.
11+
The `.spec.autoscalerRef.primaryScalerReplicas` is useful in the
12+
situation where the user does not want to scale the canary workload
13+
to the exact same size as the primary, especially when opting for a
14+
canary deployment pattern where only a small portion of traffic is
15+
routed to the canary workload pods.
16+
17+
#### Improvements
18+
19+
- Support for overriding primary scaler replicas
20+
[#1343](https://github.com/fluxcd/flagger/pull/1343)
21+
- Allow access to Prometheus in OpenShift via SA token
22+
[#1338](https://github.com/fluxcd/flagger/pull/1338)
23+
- Update Kubernetes packages to v1.26.1
24+
[#1352](https://github.com/fluxcd/flagger/pull/1352)
25+
526
## 1.27.0
627

728
**Release date:** 2022-12-15

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.16
24+
FROM alpine:3.17
2525

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

Dockerfile.loadtester

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ARG REVISION
66

77
RUN apk --no-cache add alpine-sdk perl curl bash tar
88

9-
RUN HELM3_VERSION=3.10.2 && \
9+
RUN HELM3_VERSION=3.11.0 && \
1010
curl -sSL "https://get.helm.sh/helm-v${HELM3_VERSION}-linux-${TARGETARCH}.tar.gz" | tar xvz && \
1111
chmod +x linux-${TARGETARCH}/helm && mv linux-${TARGETARCH}/helm /usr/local/bin/helm
1212

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

charts/flagger/values.yaml

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

33
image:
44
repository: ghcr.io/fluxcd/flagger
5-
tag: 1.27.0
5+
tag: 1.28.0
66
pullPolicy: IfNotPresent
77
pullSecret:
88

@@ -138,7 +138,7 @@ tolerations: []
138138
prometheus:
139139
# to be used with ingress controllers
140140
install: false
141-
image: docker.io/prom/prometheus:v2.39.1
141+
image: docker.io/prom/prometheus:v2.41.0
142142
pullSecret:
143143
retention: 2h
144144
# when enabled, it will add a security context for the prometheus pod

charts/loadtester/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: loadtester
3-
version: 0.28.0
4-
appVersion: 0.28.0
3+
version: 0.28.1
4+
appVersion: 0.28.1
55
kubeVersion: ">=1.19.0-0"
66
engine: gotpl
77
description: Flagger's load testing services based on rakyll/hey and bojand/ghz that generates traffic during canary analysis when configured as a webhook.

charts/loadtester/values.yaml

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

33
image:
44
repository: ghcr.io/fluxcd/flagger-loadtester
5-
tag: 0.28.0
5+
tag: 0.28.1
66
pullPolicy: IfNotPresent
77
pullSecret:
88

cmd/loadtester/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"go.uber.org/zap"
2929
)
3030

31-
var VERSION = "0.28.0"
31+
var VERSION = "0.28.1"
3232
var (
3333
logLevel string
3434
port string

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.27.0
12+
newTag: 1.28.0

kustomize/base/prometheus/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
serviceAccountName: flagger-prometheus
2020
containers:
2121
- name: prometheus
22-
image: prom/prometheus:v2.39.1
22+
image: prom/prometheus:v2.41.0
2323
imagePullPolicy: IfNotPresent
2424
args:
2525
- '--storage.tsdb.retention=2h'

kustomize/tester/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: loadtester
22-
image: ghcr.io/fluxcd/flagger-loadtester:0.28.0
22+
image: ghcr.io/fluxcd/flagger-loadtester:0.28.1
2323
imagePullPolicy: IfNotPresent
2424
ports:
2525
- name: http

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

0 commit comments

Comments
 (0)