From d555481dd6058230fd7d775df9f1206ac3cd0e23 Mon Sep 17 00:00:00 2001 From: Venkata Gunapati Date: Mon, 17 Apr 2023 13:15:00 -0700 Subject: [PATCH 1/2] chore: release 0.15.0 Signed-off-by: Venkata Gunapati --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- main.go | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 637090f3..3cc60e18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,25 @@ 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.14.1-alpha2] - 2023-4-17 + +* fix: functional test by @vgunapati and @garomonegro in (#383) (#382) +* chore: Update functional-test.yaml ubuntu-20.04 by @garomonegro in (#381) +* fix: Not honoring gp3 volume iops and throughput values by @vgunapati in (#380) +* chore(deps): Bump golang.org/x/net (#377) +* chore(deps): Bump github.com/prometheus/client_golang (#375) +* fix: Replace ARN format validation procedure by @srosenberg-apptio in (#374) +* fix: remove spot dependency from functional test by @eytan-avisror in (#360) +* feat: add support for container runtime on windows AMIs by @backjo in (#359) +* chore: Add CodeQL analysis by @backjo in (#358) +* feat: use IMDS for autoscaling information by @backjo in (#357) + ## [v0.14.1-alpha2] - 2022-4-6 * fix: use non-deprecated CRD api by @backjo in https://github.com/keikoproj/instance-manager/pull/355 * chore: upgrade dependencies by @eytan-avisror in https://github.com/keikoproj/instance-manager/pull/353 * feat: allow resolving EKS AMIs by version/slug for better readability by @backjo in https://github.com/keikoproj/instance-manager/pull/351 * fix: Add override instance type for running instances in MixedInstancePolicy by @eytan-avisror in https://github.com/keikoproj/instance-manager/pull/350 + ## [v0.14.0-alpha2] - 2022-2-14 * feat: add support for calculating max pods when prefix assignment is … by @backjo in https://github.com/keikoproj/instance-manager/pull/326 * fix: check architecture when considering similar instance types in the same family by @backjo in https://github.com/keikoproj/instance-manager/pull/332 diff --git a/README.md b/README.md index 068de6a8..fe53a6d1 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.14.1-blue.svg?cacheSeconds=2592000) +![version](https://img.shields.io/badge/version-0.15.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 8388c9a0..bdc4f38c 100644 --- a/main.go +++ b/main.go @@ -44,7 +44,7 @@ var ( setupLog = ctrl.Log.WithName("setup") ) -const controllerVersion = "instancemgr-0.14.1" +const controllerVersion = "instancemgr-0.15.0" func init() { instancemgrv1alpha1.AddToScheme(scheme) From 310dfcb81a3bfaf4cb46018bdeddb077a7f287d4 Mon Sep 17 00:00:00 2001 From: Venkata Gunapati Date: Mon, 17 Apr 2023 13:20:29 -0700 Subject: [PATCH 2/2] fix: changelog Signed-off-by: Venkata Gunapati --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cc60e18..cfdd23d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.14.1-alpha2] - 2023-4-17 +## [v0.15.0-alpha2] - 2023-4-17 * fix: functional test by @vgunapati and @garomonegro in (#383) (#382) * chore: Update functional-test.yaml ubuntu-20.04 by @garomonegro in (#381)