Skip to content

Commit 5d39741

Browse files
authored
Cut v2.11.0 release (#197)
1 parent 4d97b63 commit 5d39741

File tree

6 files changed

+81
-414
lines changed

6 files changed

+81
-414
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.11.0] - 2024-03-22
810
### Changed
911
- Updated to `k8shorizmetrics/v3`.
1012
- Partial K8s metrics server errors are logged to help with debugging.
@@ -283,7 +285,9 @@ command and `evaluate` commands; default `3000` milliseconds.
283285
- Deploy image to Docker Hub.
284286

285287
[Unreleased]:
286-
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.10.0...HEAD
288+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.11.0...HEAD
289+
[v2.11.0]:
290+
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.10.0...v2.11.0
287291
[v2.10.0]:
288292
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.9.0...v2.10.0
289293
[v2.9.0]:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build](https://github.com/jthomperoo/custom-pod-autoscaler/workflows/main/badge.svg)](https://github.com/jthomperoo/custom-pod-autoscaler/actions)
2-
[![go.dev](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat)](https://pkg.go.dev/github.com/jthomperoo/custom-pod-autoscaler)
2+
[![go.dev](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat)](https://pkg.go.dev/github.com/jthomperoo/custom-pod-autoscaler/v2)
33
[![Go Report
4-
Card](https://goreportcard.com/badge/github.com/jthomperoo/custom-pod-autoscaler)](https://goreportcard.com/report/github.com/jthomperoo/custom-pod-autoscaler)
4+
Card](https://goreportcard.com/badge/github.com/jthomperoo/custom-pod-autoscaler)](https://goreportcard.com/report/github.com/jthomperoo/custom-pod-autoscaler/v2)
55
[![Documentation
66
Status](https://readthedocs.org/projects/custom-pod-autoscaler/badge/?version=stable)](https://custom-pod-autoscaler.readthedocs.io/en/stable)
77
[![License](https://img.shields.io/:license-apache-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
@@ -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.10.0/example).
30+
information](https://github.com/jthomperoo/custom-pod-autoscaler/tree/v2.11.0/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.10.0/custom-pod-autoscaler.tar.gz \
26+
https://github.com/jthomperoo/custom-pod-autoscaler/releases/download/v2.11.0/custom-pod-autoscaler.tar.gz \
2727
| tar xvz \
2828
&& mv dist/* /app/
2929

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,35 @@
11
module github.com/jthomperoo/custom-pod-autoscaler/example/simple-pod-metrics-golang
22

3-
go 1.16
3+
go 1.21
4+
5+
toolchain go1.21.4
6+
7+
require (
8+
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.11.0
9+
k8s.io/api v0.29.3
10+
k8s.io/apimachinery v0.29.3
11+
k8s.io/client-go v0.29.3
12+
)
413

514
require (
6-
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.10.0
7-
k8s.io/api v0.29.0
8-
k8s.io/apimachinery v0.29.0
9-
k8s.io/client-go v0.29.0
15+
github.com/go-logr/logr v1.4.1 // indirect
16+
github.com/gogo/protobuf v1.3.2 // indirect
17+
github.com/google/gofuzz v1.2.0 // indirect
18+
github.com/json-iterator/go v1.1.12 // indirect
19+
github.com/jthomperoo/k8shorizmetrics/v3 v3.0.0 // indirect
20+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
21+
github.com/modern-go/reflect2 v1.0.2 // indirect
22+
github.com/rogpeppe/go-internal v1.11.0 // indirect
23+
github.com/stretchr/testify v1.9.0 // indirect
24+
golang.org/x/net v0.22.0 // indirect
25+
golang.org/x/text v0.14.0 // indirect
26+
gopkg.in/inf.v0 v0.9.1 // indirect
27+
gopkg.in/yaml.v2 v2.4.0 // indirect
28+
k8s.io/klog/v2 v2.120.1 // indirect
29+
k8s.io/utils v0.0.0-20240310230437-4693a0247e57 // indirect
30+
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
31+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
32+
sigs.k8s.io/yaml v1.4.0 // indirect
1033
)
1134

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

0 commit comments

Comments
 (0)