Skip to content

Commit 14bc569

Browse files
authored
Cut v2.12.1 release (#203)
1 parent 0055031 commit 14bc569

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
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.1] - 2025-02-14
810
### Fixed
911
- Handling of plurals is more robust, it no longer simply adds a 's' to the end which failed for plurals such
1012
as 'logstash' -> 'logstashes', now queries using the discovery client and REST mapper.
@@ -299,7 +301,9 @@ command and `evaluate` commands; default `3000` milliseconds.
299301
- Deploy image to Docker Hub.
300302

301303
[Unreleased]:
302-
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.12.0...HEAD
304+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.12.1...HEAD
305+
[v2.12.1]:
306+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.12.0...v2.12.1
303307
[v2.12.0]:
304308
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.11.0...v2.12.0
305309
[v2.11.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.12.0/example).
30+
information](https://github.com/jthomperoo/custom-pod-autoscaler/tree/v2.12.1/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.12.0/custom-pod-autoscaler.tar.gz \
26+
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.12.1/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.12.0
8+
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.12.1
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.12.0/custom-pod-autoscaler.tar.gz \
34+
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.12.1/custom-pod-autoscaler.tar.gz \
3535
| tar xvz \
3636
&& mv dist/* /app/
3737

0 commit comments

Comments
 (0)