diff --git a/CHANGELOG.md b/CHANGELOG.md index cfdd23d0..46895b93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,33 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). + +## [v0.17.0-alpha2] - 2023-10-30 +* Fix incorrect counter name (#409) +* Bump sigs.k8s.io/controller-runtime from 0.12.1 to 0.12.3 (#400) +* Bump github.com/prometheus/client_golang (#403) +* Bump github.com/onsi/gomega from 1.27.10 to 1.28.0 (#404) +* Bump crazy-max/ghaction-docker-meta from 1 to 5 (#407) +* Bump golang.org/x/net from 0.12.0 to 0.17.0 (#408) +* Bump docker/build-push-action from 2 to 5 (#406) +* Bump docker/login-action from 1 to 3 (#405) +* Bump github.com/aws/aws-sdk-go from 1.45.14 to 1.45.19 (#402) +* Bump codecov/codecov-action from 1 to 3 (#395) +* Bump docker/setup-qemu-action from 1 to 3 (#397) +* Bump docker/setup-buildx-action from 1 to 3 (#394) +* Bump actions/setup-go from 2 to 4 (#393) +* Bump actions/checkout from 2 to 4 (#396) +* Add dependabot configuration (#392) +* Update aws-auth and aws-sdk-go-cache (#391) +* Update go to 1.19, client-go to v0.24.14, and controller-runtime to v0.12.1 (#389) +* Set LaunchTemplate as default value for default-scaling-configuration (#387) +* Bump gopkg.in/yaml.v3 (#386) +* Feat: support overriding default scaling configuration (#385) + +## [v0.16.0-alpha2] - 2023-09-01 +* Make launchtemplates as a default scaling group configuration, instead of launchconfigurations. by @shreyas-badiger in https://github.com/keikoproj/instance-manager/pull/385 + + ## [v0.15.0-alpha2] - 2023-4-17 * fix: functional test by @vgunapati and @garomonegro in (#383) (#382) diff --git a/README.md b/README.md index fe53a6d1..5ede70a9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![codecov](https://codecov.io/gh/keikoproj/instance-manager/branch/master/graph/badge.svg?token=IJbjmSBliL)](https://codecov.io/gh/keikoproj/instance-manager) [![Go Report Card](https://goreportcard.com/badge/github.com/keikoproj/instance-manager)](https://goreportcard.com/report/github.com/keikoproj/instance-manager) [![slack](https://img.shields.io/badge/slack-join%20the%20conversation-ff69b4.svg)][SlackUrl] -![version](https://img.shields.io/badge/version-0.15.0-blue.svg?cacheSeconds=2592000) +![version](https://img.shields.io/badge/version-0.17.0-blue.svg?cacheSeconds=2592000) > Create and manage instance groups with Kubernetes. **instance-manager** simplifies the creation of worker nodes from within a Kubernetes cluster and creates `InstanceGroup` objects in your cluster. Additionally, **instance-manager** will provision the actual machines and bootstrap them to the cluster. diff --git a/main.go b/main.go index f85fbaf8..40783791 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,7 @@ var ( setupLog = ctrl.Log.WithName("setup") ) -const controllerVersion = "instancemgr-0.15.0" +const controllerVersion = "instancemgr-0.17.0" func init() { instancemgrv1alpha1.AddToScheme(scheme)