Skip to content

Commit db5f8d8

Browse files
committed
Cut v2.12.2 release
1 parent 919b5da commit db5f8d8

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
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.2] - 2025-03-22
810
### Changed
911
- Upgraded package dependencies.
1012
### Added
@@ -314,7 +316,9 @@ command and `evaluate` commands; default `3000` milliseconds.
314316
- Deploy image to Docker Hub.
315317

316318
[Unreleased]:
317-
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.12.1...HEAD
319+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.12.2...HEAD
320+
[v2.12.2]:
321+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.12.1...v2.12.2
318322
[v2.12.1]:
319323
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.12.0...v2.12.1
320324
[v2.12.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.1/example).
30+
information](https://github.com/jthomperoo/custom-pod-autoscaler/tree/v2.12.2/example).
3131

3232
## Features
3333

example/custom-docker-image/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ WORKDIR /app
2121
RUN apt-get update && apt-get install wget -y
2222

2323
# Install CPA (using AMD64 binary)
24-
RUN wget \
25-
-qO- \
26-
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.12.1/custom-pod-autoscaler.tar.gz \
27-
| tar xvz \
24+
RUN wget \
25+
-qO- \
26+
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.12.2/custom-pod-autoscaler.tar.gz \
27+
| tar xvz \
2828
&& mv dist/* /app/
2929

3030
# Remove unused dist directory

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.1
8+
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.12.2
99
k8s.io/api v0.32.3
1010
k8s.io/apimachinery v0.32.3
1111
k8s.io/client-go v0.32.3

example/simple-pod-metrics-java/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ WORKDIR /app
2929
RUN apt-get update && apt-get install wget jq curl openjdk-21-jre -y
3030

3131
# Install CPA
32-
RUN wget \
33-
-qO- \
34-
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.12.1/custom-pod-autoscaler.tar.gz \
35-
| tar xvz \
32+
RUN wget \
33+
-qO- \
34+
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.12.2/custom-pod-autoscaler.tar.gz \
35+
| tar xvz \
3636
&& mv dist/* /app/
3737

3838
# Remove unused dist directory

0 commit comments

Comments
 (0)