Skip to content

Commit

Permalink
Cut v2.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomperoo committed Mar 22, 2024
1 parent 4d97b63 commit 8d7ddf6
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 412 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.11.0] - 2024-03-22
### Changed
- Updated to `k8shorizmetrics/v3`.
- Partial K8s metrics server errors are logged to help with debugging.
Expand Down Expand Up @@ -283,7 +285,9 @@ command and `evaluate` commands; default `3000` milliseconds.
- Deploy image to Docker Hub.

[Unreleased]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.10.0...HEAD
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.11.0...HEAD
[v2.11.0]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.10.0...v2.11.0
[v2.10.0]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.9.0...v2.10.0
[v2.9.0]:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0/example).
information](https://github.com/jthomperoo/custom-pod-autoscaler/tree/v2.11.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.10.0/custom-pod-autoscaler.tar.gz \
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.11.0/custom-pod-autoscaler.tar.gz \
| tar xvz \
&& mv dist/* /app/

Expand Down
33 changes: 28 additions & 5 deletions example/simple-pod-metrics-golang/go.mod
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
module github.com/jthomperoo/custom-pod-autoscaler/example/simple-pod-metrics-golang

go 1.16
go 1.21

toolchain go1.21.4

require (
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.11.0
k8s.io/api v0.29.3
k8s.io/apimachinery v0.29.3
k8s.io/client-go v0.29.3
)

require (
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
github.com/go-logr/logr v1.4.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/jthomperoo/k8shorizmetrics/v3 v3.0.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/stretchr/testify v1.9.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/klog/v2 v2.120.1 // indirect
k8s.io/utils v0.0.0-20240310230437-4693a0247e57 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)

replace github.com/jthomperoo/custom-pod-autoscaler/v2 => ../../
Loading

0 comments on commit 8d7ddf6

Please sign in to comment.