Skip to content

Commit 5f8a6ca

Browse files
authored
Cut v2.12.2 release (#208)
1 parent 919b5da commit 5f8a6ca

File tree

6 files changed

+19
-15
lines changed

6 files changed

+19
-15
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]:

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ docker_multi_platform: package_linux_amd64 package_linux_arm64
7777
docker buildx build --push --platform=linux/amd64,linux/arm64 --target=alpine --tag $(REGISTRY)/alpine:$(VERSION) .
7878

7979
docker_tag_latest:
80-
docker buildx imagetools create --tag $(REGISTRY)/python:$(VERSION) $(REGISTRY)/python:latest
81-
docker buildx imagetools create --tag $(REGISTRY)/python-3-13:$(VERSION) $(REGISTRY)/python-3-13:latest
82-
docker buildx imagetools create --tag $(REGISTRY)/python-3-13:$(VERSION) $(REGISTRY)/python-3-12:latest
83-
docker buildx imagetools create --tag $(REGISTRY)/alpine:$(VERSION) $(REGISTRY)/alpine:latest
80+
docker buildx imagetools create $(REGISTRY)/python:$(VERSION) --tag $(REGISTRY)/python:latest
81+
docker buildx imagetools create $(REGISTRY)/python-3-13:$(VERSION) --tag $(REGISTRY)/python-3-13:latest
82+
docker buildx imagetools create $(REGISTRY)/python-3-13:$(VERSION) --tag $(REGISTRY)/python-3-12:latest
83+
docker buildx imagetools create $(REGISTRY)/alpine:$(VERSION) --tag $(REGISTRY)/alpine:latest

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)