Skip to content

Commit

Permalink
Prepare 0.6.0 release (#97)
Browse files Browse the repository at this point in the history
* release

* Update CHANGELOG.md
  • Loading branch information
eytan-avisror authored May 12, 2020
1 parent 8d1a5e5 commit e4456c9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ 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.6.0-alpha2] - 2020-5-12

### Added

- **eks provisioner v2** (#83)

### Changed

- **eks-cf provisioner deprecated (#94)**
- functional tests improvements (#79)
- Removed vended code (#91)
- Use golang 1.13.10 & update SDKs (#90)

### Fixed

- General fixes, refactor, and code improvements (#93, #92, #75, #80)
- Documentation improvements (#96)

### BREAKING CHANGES

If you are migrating from 0.5.0 and lower, you MUST delete all instance groups, update CRD, RBAC and controller, and re-create your instance groups using the new `eks` API. make sure to review the new API spec [here](https://github.com/keikoproj/instance-manager#eks-sample-spec-alpha-2).

## [v0.5.0-alpha] - 2019-3-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![codecov](https://codecov.io/gh/keikoproj/instance-manager/branch/master/graph/badge.svg)](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.5.0-blue.svg?cacheSeconds=2592000)
![version](https://img.shields.io/badge/version-0.6.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, create `InstanceGroup` objects in your cluster and 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 @@ -37,7 +37,7 @@ var (
setupLog = ctrl.Log.WithName("setup")
)

const controllerVersion = "instancemgr-0.5.0"
const controllerVersion = "instancemgr-0.6.0"

func init() {
instancemgrv1alpha1.AddToScheme(scheme)
Expand Down

0 comments on commit e4456c9

Please sign in to comment.