Skip to content

Commit

Permalink
Cut v0.13.0 release (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomperoo committed Jan 16, 2023
1 parent 6bb911e commit 8a5c2c1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
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]

## [v0.13.0] - 2023-01-16
### Added
- New ability to choose a start interval for a model, e.g. a holt winters model that only starts at the next full hour.
- `startInterval` is an optional [duration](https://pkg.go.dev/time#ParseDuration) that defines the next interval to
Expand Down Expand Up @@ -161,7 +163,9 @@ Holt-Winters configuration.
- Added the ability to use Linear Regression models to predict future scaling.

[Unreleased]:
https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/compare/v0.12.0...HEAD
https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/compare/v0.13.0...HEAD
[v0.13.0]:
https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/compare/v0.12.0...v0.13.0
[v0.12.0]:
https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/compare/v0.11.2...v0.12.0
[v0.11.2]:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -90,7 +90,7 @@ This PHPA acts like a Horizontal Pod Autoscaler and autoscales to try and keep t
The operator for managing Predictive Horizontal Pod Autoscalers can be installed using Helm:

```bash
VERSION=v0.12.0
VERSION=v0.13.0
HELM_CHART=predictive-horizontal-pod-autoscaler-operator
helm install ${HELM_CHART} https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/releases/download/${VERSION}/predictive-horizontal-pod-autoscaler-${VERSION}.tgz
```
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/getting-started.md
Expand Up @@ -31,13 +31,13 @@ k3d cluster create phpa-test-cluster

Installing PHPAs requires you to have installed the PHPA operator first onto your cluster.

In this guide we are using `v0.12.0` of the PHPA operator, but check out the [installation
In this guide we are using `v0.13.0` of the PHPA operator, but check out the [installation
guide](./installation.md) for more up to date instructions for later releases.

Run the following commands to install the PHPA operator:

```bash
VERSION=v0.12.0
VERSION=v0.13.0
HELM_CHART=predictive-horizontal-pod-autoscaler-operator
helm install ${HELM_CHART} https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/releases/download/${VERSION}/predictive-horizontal-pod-autoscaler-${VERSION}.tgz
```
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/installation.md
Expand Up @@ -7,7 +7,7 @@ The PHPA operator can be installed using Helm, run this command to install the o
cluster-wide scope:

```bash
VERSION=v0.12.0
VERSION=v0.13.0
HELM_CHART=predictive-horizontal-pod-autoscaler-operator
helm install ${HELM_CHART} https://github.com/jthomperoo/predictive-horizontal-pod-autoscaler/releases/download/${VERSION}/predictive-horizontal-pod-autoscaler-${VERSION}.tgz
```
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/models.md
Expand Up @@ -15,7 +15,7 @@ is skipped. Defaults set based on the algorithm used, see below.
For example a value of `1m` would mean the model would only start to apply at the top of the next minute. This is
useful if you have seasonal data that you need the model synced to, such as Holt-Winters, which allows you to do things
like making sure the model defines the start of a Holt-Winters season as starting at midnight (with the season being)
the whole day.
and lasting the whole day.
- **resetDuration** - The [duration](https://pkg.go.dev/time#ParseDuration) that the model can go for without recording
any data before the data is too old and is cleared out. A new start time will be calculated from the `startInterval`
if it's provided at this point too.
Expand Down

0 comments on commit 8a5c2c1

Please sign in to comment.