Skip to content

Commit

Permalink
Cut 1.4.1 release (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomperoo authored Feb 10, 2024
1 parent 83394be commit d7ca443
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 4 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v1.4.1] - 2024-02-10
### Fixed
- Bug that caused foreground cascade deletion to send the operator into a loop
([#110](https://github.com/jthomperoo/custom-pod-autoscaler-operator/issues/110)).
Expand Down Expand Up @@ -127,7 +129,8 @@ Autoscaler.
- Allow creation/deletion of CPA.

[Unreleased]:
https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.4.0...HEAD
https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.4.1...HEAD
[v1.4.1]: https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.4.0...v1.4.1
[v1.4.0]: https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.3.0...v1.4.0
[v1.3.0]: https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.2.1...v1.3.0
[v1.2.1]: https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.2.0...v1.2.1
Expand Down
8 changes: 4 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Run this to install the Operator and Custom Pod Autoscaler definition with
cluster-wide scope on your cluster:

```
VERSION=v1.4.0
VERSION=v1.4.1
HELM_CHART=custom-pod-autoscaler-operator
helm install ${HELM_CHART} https://github.com/jthomperoo/custom-pod-autoscaler-operator/releases/download/${VERSION}/custom-pod-autoscaler-operator-${VERSION}.tgz
```
Expand All @@ -18,7 +18,7 @@ namespaced scope on your cluster:

```
NAMESPACE=<INSERT_NAMESPACE_HERE>
VERSION=v1.4.0
VERSION=v1.4.1
HELM_CHART=custom-pod-autoscaler-operator
helm install --set mode=namespaced --namespace=${NAMESPACE} ${HELM_CHART} https://github.com/jthomperoo/custom-pod-autoscaler-operator/releases/download/${VERSION}/custom-pod-autoscaler-operator-${VERSION}.tgz
```
Expand All @@ -37,7 +37,7 @@ Run this to install the Operator and Custom Pod Autoscaler definition with
cluster-wide scope on your cluster:

```
VERSION=v1.4.0
VERSION=v1.4.1
kubectl apply -f https://github.com/jthomperoo/custom-pod-autoscaler-operator/releases/download/${VERSION}/cluster.yaml
```

Expand All @@ -47,7 +47,7 @@ namespaced scope on your cluster:

```
NAMESPACE=<INSERT_NAMESPACE_HERE>
VERSION=v1.4.0
VERSION=v1.4.1
kubectl config set-context --current --namespace=${NAMESPACE}
kubectl apply -f https://github.com/jthomperoo/custom-pod-autoscaler-operator/releases/download/${VERSION}/namespaced.yaml
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ installation using kubectl.

Run this to install the Operator and Custom Pod Autoscaler definition with cluster-wide scope on your cluster:
```
VERSION=v1.4.0
VERSION=v1.4.1
HELM_CHART=custom-pod-autoscaler-operator
helm install ${HELM_CHART} https://github.com/jthomperoo/custom-pod-autoscaler-operator/releases/download/${VERSION}/custom-pod-autoscaler-operator-${VERSION}.tgz
```
Expand Down

0 comments on commit d7ca443

Please sign in to comment.