Skip to content

Commit 7156c1c

Browse files
authored
Cut v2.8.0 release (#184)
1 parent 4a109db commit 7156c1c

File tree

9 files changed

+15
-10
lines changed

9 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [v2.8.0] - 2023-08-15
810
### Changed
911
- Upgraded to Go `v1.21`.
1012
- Upgraded package dependencies.
13+
- Dropped support for Kubernetes `v1.23`, upgraded to use the `autoscaling/v2` API.
1114

1215
## [v2.7.0] - 2022-05-14
1316
### Changed
@@ -257,7 +260,9 @@ command and `evaluate` commands; default `3000` milliseconds.
257260
- Deploy image to Docker Hub.
258261

259262
[Unreleased]:
260-
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.7.0...HEAD
263+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.8.0...HEAD
264+
[v2.8.0]:
265+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.7.0...v2.8.0
261266
[v2.7.0]:
262267
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.6.0...v2.7.0
263268
[v2.6.0]:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Kubernetes interactions and custom user logic interactions.
2727

2828
A Custom Pod Autoscaler can be created by using this project, extending the Docker base images provided and inserting
2929
your own logic; see the [examples for more
30-
information](https://github.com/jthomperoo/custom-pod-autoscaler/tree/v2.7.0/example).
30+
information](https://github.com/jthomperoo/custom-pod-autoscaler/tree/v2.8.0/example).
3131

3232
## Features
3333

example/downscale-stabilization/cpa.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
containers:
99
- name: downscale-stabilization
1010
image: downscale-stabilization:latest
11-
imagePullPolicy: Always
11+
imagePullPolicy: IfNotPresent
1212
scaleTargetRef:
1313
apiVersion: apps/v1
1414
kind: Deployment
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
requests==2.22.0
1+
requests==2.31.0

example/flask-metric/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM python:3.6-slim
15+
FROM python:3.8-slim
1616

1717
# Install dependencies for debugging
1818
RUN apt-get update
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Flask==1.0
1+
Flask==2.3.2
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
requests==2.22.0
2-
python-twitter==3.5
1+
requests==2.31.0
2+
python-twitter==3.5

example/simple-pod-metrics-golang/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/jthomperoo/custom-pod-autoscaler/example/simple-pod-metrics-go
33
go 1.16
44

55
require (
6-
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.7.0
6+
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.8.0
77
k8s.io/api v0.21.11
88
k8s.io/apimachinery v0.21.11
99
k8s.io/client-go v0.21.11
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
requests==2.22.0
1+
requests==2.31.0

0 commit comments

Comments
 (0)