Skip to content

Commit

Permalink
Cut 2.5.0 release (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomperoo committed Mar 26, 2022
1 parent 9b65cd4 commit 8518330
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1,242 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.5.0] - 2022-03-26
### Changed
- Now internally using the Kubernetes Scale API for determining replica count and selectors, removing any direct
dependencies on the Kubernetes core types when used in conjunction with the Kubernetes unstructured API.
Expand Down Expand Up @@ -239,7 +241,9 @@ command and `evaluate` commands; default `3000` milliseconds.
- Deploy image to Docker Hub.

[Unreleased]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.4.1...HEAD
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.5.0...HEAD
[v2.5.0]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.4.1...v2.5.0
[v2.4.1]:
https://github.com/jthomperoo/custom-pod-autoscaler/compare/v2.4.0...v2.4.1
[v2.4.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.4.1/example).
information](https://github.com/jthomperoo/custom-pod-autoscaler/tree/v2.5.0/example).

## Features

Expand Down
39 changes: 5 additions & 34 deletions example/simple-pod-metrics-golang/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,10 @@ module github.com/jthomperoo/custom-pod-autoscaler/example/simple-pod-metrics-go
go 1.16

require (
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.4.0
k8s.io/api v0.21.8
k8s.io/apimachinery v0.21.8
k8s.io/client-go v0.21.8
github.com/jthomperoo/custom-pod-autoscaler/v2 v2.5.0
k8s.io/api v0.21.11
k8s.io/apimachinery v0.21.11
k8s.io/client-go v0.21.11
)

replace (
github.com/jthomperoo/custom-pod-autoscaler/v2 => ../../
k8s.io/api => k8s.io/api v0.21.8
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.21.8
k8s.io/apimachinery => k8s.io/apimachinery v0.21.8
k8s.io/apiserver => k8s.io/apiserver v0.21.8
k8s.io/cli-runtime => k8s.io/cli-runtime v0.21.8
k8s.io/client-go => k8s.io/client-go v0.21.8
k8s.io/cloud-provider => k8s.io/cloud-provider v0.21.8
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.21.8
k8s.io/code-generator => k8s.io/code-generator v0.21.8
k8s.io/component-base => k8s.io/component-base v0.21.8
k8s.io/component-helpers => k8s.io/component-helpers v0.21.8
k8s.io/controller-manager => k8s.io/controller-manager v0.21.8
k8s.io/cri-api => k8s.io/cri-api v0.21.8
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.21.8
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.21.8
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.21.8
k8s.io/kube-proxy => k8s.io/kube-proxy v0.21.8
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.21.8
k8s.io/kubectl => k8s.io/kubectl v0.21.8
k8s.io/kubelet => k8s.io/kubelet v0.21.8
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.21.8
k8s.io/metrics => k8s.io/metrics v0.21.8
k8s.io/mount-utils => k8s.io/mount-utils v0.21.8
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.21.8
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.21.8
k8s.io/sample-cli-plugin => k8s.io/sample-cli-plugin v0.21.8
k8s.io/sample-controller => k8s.io/sample-controller v0.21.8
)
replace github.com/jthomperoo/custom-pod-autoscaler/v2 => ../../

0 comments on commit 8518330

Please sign in to comment.