Skip to content

Commit

Permalink
Add support for the Ohio region and recently released instance types.
Browse files Browse the repository at this point in the history
This adds support for the newly released us-east-2 (Ohio) region, as well as
the followinng instance types in all the other regions where they are
available:
- m4.16xlarge
- p2.xlarge
- p2.8xlarge
- p2.16xlarge
- x1.16xlarge
  • Loading branch information
cristim committed Oct 23, 2016
1 parent a7230f1 commit a2be373
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ SHA=$(shell git rev-parse HEAD | cut -c 1-7)
BUILD:=$(or ${TRAVIS_BUILD_NUMBER}, ${TRAVIS_BUILD_NUMBER}, ${SHA})

# upstream data
#INSTANCES_URL="https://raw.githubusercontent.com/powdahound/ec2instances.info/master/www/instances.json"
# my Github fork
INSTANCES_URL="https://raw.githubusercontent.com/cristim/ec2instances.info/master/www/instances.json"
INSTANCES_URL="https://raw.githubusercontent.com/powdahound/ec2instances.info/37596e2/www/instances.json"

all: build_local

Expand Down
3 changes: 0 additions & 3 deletions core/autoscaling.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,6 @@ func (a *autoScalingGroup) setAutoScalingMaxSize(maxSize int64) {
logger.Println(err.Error())
return
}

// Pretty-print the response data.
logger.Println(resp)
}

func (a *autoScalingGroup) bidForSpotInstance(
Expand Down

1 comment on commit a2be373

@cristim
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes #23

Please sign in to comment.