Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into ec2-adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
emmahsax committed Jul 10, 2018
2 parents 2bdb51b + 4390348 commit afdf891
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 64 deletions.
62 changes: 1 addition & 61 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,61 +1 @@
#### v2.12.0
* Use opsworks adapter on other command files

> Emma Sax: Unknown User: https://github.com/sportngin/opsicle/pull/144
* Use opsworks adapter on create_instance command file

> Emma Sax: Vivek Bisen, Unknown User: https://github.com/sportngin/opsicle/pull/143
#### v2.11.3
#### v2.11.2
#### v2.11.1
#### v2.11.0
* Make an opsworks adapter that calls an opsworks client

> Emma Sax, Vivek Bisen: Tony Song, Unknown User: https://github.com/sportngin/opsicle/pull/140
#### v2.10.1
* Ask layer before stopping/deleting instances; know which file creatable instance is in

> Emma Sax: Unknown User: https://github.com/sportngin/opsicle/pull/138
#### v2.10.0
* Rename cloneable things to manageable things

> Emma Sax: Unknown User: https://github.com/sportngin/opsicle/pull/137
#### v2.9.6
#### v2.9.5
#### v2.9.4
* Show private IPs of instances in `opsicle instances env` command

> Vivek Bisen: Tim Sandquist, Unknown User: https://github.com/sportngin/opsicle/pull/132
#### v2.9.3
* Fix bug where cloning multiple instances will always result in the same subnet zones, AMIs, and agent versions

> Emma Sax: Unknown User: https://github.com/sportngin/opsicle/pull/130
#### v2.9.2
#### v2.9.1
* Display Layer short name instead of readable name to make it easier to copy/paste

> Tim Sandquist: Vivek Bisen, Unknown User: https://github.com/sportngin/opsicle/pull/125
#### v2.9.0
* Make new clones of instances with only the Subnet ID

> Emma Sax: Unknown User: https://github.com/sportngin/opsicle/pull/129
#### v2.8.0
* opsicle clone-instance --with-defaults environment

> Vivek Bisen, Emma Sax: Unknown User: https://github.com/sportngin/opsicle/pull/126
#### v2.7.0
* Start instance after cloning it

> Vivek Bisen: Unknown User: https://github.com/sportngin/opsicle/pull/124
#### v2.6.0
#### v2.12.1
2 changes: 1 addition & 1 deletion lib/opsicle/commands/delete_instance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def deleteable_instances(layer)

def select_layer
puts "\nLayers:\n"
ops_layers = @opsworks_adapter.get_layers(@stack_id)
ops_layers = @opsworks_adapter.get_layers(@stack.id)

layers = []
ops_layers.each do |layer|
Expand Down
2 changes: 1 addition & 1 deletion lib/opsicle/commands/stop_instance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def stoppable_instances(layer)

def select_layer
puts "\nLayers:\n"
ops_layers = @opsworks_adpater.get_layers(@stack.id)
ops_layers = @opsworks_adapter.get_layers(@stack.id)

layers = []
ops_layers.each do |layer|
Expand Down
1 change: 1 addition & 0 deletions lib/opsicle/manageable_stack.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def gather_eip_information
eip_information = []

@eips.each do |eip|
next unless eip.instance_id
instance_id = eip.instance_id
instance = @opsworks.describe_instances(instance_ids: [instance_id]).instances.first
instance_name = instance.hostname
Expand Down
2 changes: 1 addition & 1 deletion lib/opsicle/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Opsicle
VERSION = "2.12.0"
VERSION = "2.12.1"
end

0 comments on commit afdf891

Please sign in to comment.