Skip to content

Commit

Permalink
Cut 1.3.0 release (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomperoo authored Jul 8, 2022
1 parent 18f8dd7 commit 0bff59c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 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.3.0] - 2022-07-08
### Fixed
- Bug that pod metadata was not preserved when creating the pod ([#87](https://github.com/jthomperoo/custom-pod-autoscaler-operator/issues/87)).
### Changed
Expand Down Expand Up @@ -113,7 +115,8 @@ Autoscaler.
- Allow creation/deletion of CPA.

[Unreleased]:
https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.2.1...HEAD
https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.3.0...HEAD
[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
[v1.2.0]: https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.1.1...v1.2.0
[v1.1.1]: https://github.com/jthomperoo/custom-pod-autoscaler-operator/compare/v1.1.0...v1.1.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.2.1
VERSION=v1.3.0
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.2.1
VERSION=v1.3.0
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.2.1
VERSION=v1.3.0
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.2.1
VERSION=v1.3.0
kubectl config set-context --current --namespace=${NAMESPACE}
kubectl apply -f https://github.com/jthomperoo/custom-pod-autoscaler-operator/releases/download/${VERSION}/namespaced.yaml
```
16 changes: 5 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@
[![Go Report Card](https://goreportcard.com/badge/github.com/jthomperoo/custom-pod-autoscaler-operator)](https://goreportcard.com/report/github.com/jthomperoo/custom-pod-autoscaler-operator)
[![License](https://img.shields.io/:license-apache-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)

<p>This project is supported by:</p>
<p>
<a href="https://www.digitalocean.com/">
<img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/SVG/DO_Logo_horizontal_blue.svg" width="201px">
</a>
</p>

# Custom Pod Autoscaler Operator

This is the operator for managing [Custom Pod Autoscalers](https://github.com/jthomperoo/custom-pod-autoscaler) (CPA).
Expand All @@ -25,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.2.1
VERSION=v1.3.0
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 @@ -37,13 +30,14 @@ See the [usage guide](USAGE.md) to see some simple usage options. For more indep

## Developing

### Environment

Developing this project requires these dependencies:

* [Go](https://golang.org/doc/install) == `1.18`

### Commands
See the [contributing guide](CONTRIBUTING.md) for more information about how you can develop and contribute to this
project.

## Commands

* `make` - builds the operator binary.
* `make docker` - build the docker image for the operator.
Expand Down

0 comments on commit 0bff59c

Please sign in to comment.