Skip to content

Commit 54308fe

Browse files
authored
Cut v2.12.0 release (#201)
1 parent 89e2003 commit 54308fe

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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.12.0] - 2025-02-12
810
### Added
911
- Added support for Python 3.13 Docker image (`custompodautoscaler/python-3-13`)
1012
### Changed
@@ -294,7 +296,9 @@ command and `evaluate` commands; default `3000` milliseconds.
294296
- Deploy image to Docker Hub.
295297

296298
[Unreleased]:
297-
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.11.0...HEAD
299+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.12.0...HEAD
300+
[v2.12.0]:
301+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.11.0...v2.12.0
298302
[v2.11.0]:
299303
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.10.0...v2.11.0
300304
[v2.10.0]:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Status](https://readthedocs.org/projects/custom-pod-autoscaler/badge/?version=st
88

99
<p>This project is supported by:</p>
1010
<p>
11-
<a href="https://www.digitalocean.com/">
12-
<img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/SVG/DO_Logo_horizontal_blue.svg" width="201px">
11+
<a href="https://www.businesssimulations.com/">
12+
<img src="https://businesssimulations.com/img/logos/logo_nostrap_tp_410.webp">
1313
</a>
1414
</p>
1515

@@ -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.11.0/example).
30+
information](https://github.com/jthomperoo/custom-pod-autoscaler/tree/v2.12.0/example).
3131

3232
## Features
3333

example/custom-docker-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN apt-get update && apt-get install wget -y
2323
# Install CPA
2424
RUN wget \
2525
-qO- \
26-
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.11.0/custom-pod-autoscaler.tar.gz \
26+
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.12.0/custom-pod-autoscaler.tar.gz \
2727
| tar xvz \
2828
&& mv dist/* /app/
2929

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.24
55
toolchain go1.24.0
66

77
require (
8-
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.11.0
8+
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.12.0
99
k8s.io/api v0.32.1
1010
k8s.io/apimachinery v0.32.1
1111
k8s.io/client-go v0.32.1

example/simple-pod-metrics-java/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN apt-get update && apt-get install wget jq curl openjdk-21-jre -y
3131
# Install CPA
3232
RUN wget \
3333
-qO- \
34-
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.11.0/custom-pod-autoscaler.tar.gz \
34+
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.12.0/custom-pod-autoscaler.tar.gz \
3535
| tar xvz \
3636
&& mv dist/* /app/
3737

0 commit comments

Comments
 (0)