Skip to content

Commit

Permalink
Cut v2.10.0 release (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomperoo committed Dec 24, 2023
1 parent 1fbe40e commit a262d98
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v2.10.0] - 2023-12-24
### Added
- Added Python 3.12 Docker image (`custompodautoscaler/python-3-12`).
### Removed
Expand Down Expand Up @@ -278,7 +280,9 @@ command and `evaluate` commands; default `3000` milliseconds.
- Deploy image to Docker Hub.

[Unreleased]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.9.0...HEAD
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.10.0...HEAD
[v2.10.0]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.9.0...v2.10.0
[v2.9.0]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.8.0...v2.9.0
[v2.8.0]:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Go Report
Card](https://goreportcard.com/badge/github.com/jthomperoo/custom-pod-autoscaler)](https://goreportcard.com/report/github.com/jthomperoo/custom-pod-autoscaler)
[![Documentation
Status](https://readthedocs.org/projects/custom-pod-autoscaler/badge/?version=latest)](https://custom-pod-autoscaler.readthedocs.io/en/latest)
Status](https://readthedocs.org/projects/custom-pod-autoscaler/badge/?version=stable)](https://custom-pod-autoscaler.readthedocs.io/en/stable)
[![License](https://img.shields.io/:license-apache-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)

<p>This project is supported by:</p>
Expand All @@ -27,7 +27,7 @@ Kubernetes interactions and custom user logic interactions.

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

## Features

Expand Down
2 changes: 1 addition & 1 deletion example/custom-docker-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apt-get update && apt-get install wget -y
# Install CPA
RUN wget \
-qO- \
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.9.0/custom-pod-autoscaler.tar.gz \
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.10.0/custom-pod-autoscaler.tar.gz \
| tar xvz \
&& mv dist/* /app/

Expand Down
2 changes: 1 addition & 1 deletion example/simple-pod-metrics-golang/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/jthomperoo/custom-pod-autoscaler/example/simple-pod-metrics-go
go 1.16

require (
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.9.0
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.10.0
k8s.io/api v0.29.0
k8s.io/apimachinery v0.29.0
k8s.io/client-go v0.29.0
Expand Down
2 changes: 1 addition & 1 deletion example/simple-pod-metrics-java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN apt-get update && apt-get install wget jq curl openjdk-21-jre -y
# Install CPA
RUN wget \
-qO- \
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.9.0/custom-pod-autoscaler.tar.gz \
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.10.0/custom-pod-autoscaler.tar.gz \
| tar xvz \
&& mv dist/* /app/

Expand Down

0 comments on commit a262d98

Please sign in to comment.