Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.17.0 #410

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading