Class: CapifyEc2
- Inherits:
-
Object
- Object
- CapifyEc2
- Defined in:
- lib/capify-ec2.rb
Constant Summary collapse
- SLEEP_COUNT =
5
Instance Attribute Summary collapse
-
#ec2_config ⇒ Object
Returns the value of attribute ec2_config.
-
#instances ⇒ Object
Returns the value of attribute instances.
-
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
Instance Method Summary collapse
- #aws_access_key_id ⇒ Object
- #aws_secret_access_key ⇒ Object
- #deregister_instance_from_elb(instance_name) ⇒ Object
- #deregister_instance_from_elb_by_dns(server_dns) ⇒ Object
- #desired_instances(region = nil) ⇒ Object
- #determine_regions ⇒ Object
- #display_instances ⇒ Object
- #elb ⇒ Object
- #get_instance_by_dns(dns) ⇒ Object
- #get_instance_by_name(name) ⇒ Object
- #get_instances_by_region(roles, region) ⇒ Object
- #get_instances_by_role(role) ⇒ Object
- #get_load_balancer_by_instance(instance_id) ⇒ Object
- #get_load_balancer_by_name(load_balancer_name) ⇒ Object
-
#initialize(ec2_config = "config/ec2.yml") ⇒ CapifyEc2
constructor
A new instance of CapifyEc2.
- #instance_health(load_balancer, instance) ⇒ Object
- #instance_health_by_url(dns, port, path, expected_response, options = {}) ⇒ Object
- #project_instances ⇒ Object
- #register_instance_in_elb(instance_name, load_balancer_name = '') ⇒ Object
- #reregister_instance_with_elb_by_dns(server_dns, load_balancer, timeout) ⇒ Object
- #response_matches_expected?(response, expected_response) ⇒ Boolean
- #server_names ⇒ Object
Constructor Details
#initialize(ec2_config = "config/ec2.yml") ⇒ CapifyEc2
Returns a new instance of CapifyEc2.
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/capify-ec2.rb', line 14 def initialize(ec2_config = "config/ec2.yml") case ec2_config when Hash @ec2_config = ec2_config when String @ec2_config = YAML.load_file ec2_config else raise ArgumentError, "Invalid ec2_config: #{ec2_config.inspect}" end # Maintain backward compatibility with previous config format @ec2_config[:project_tags] ||= [] # User can change the Project tag string @ec2_config[:aws_project_tag] ||= "Project" # User can change the Roles tag string @ec2_config[:aws_roles_tag] ||= "Roles" # User can change the Options tag string. @ec2_config[:aws_options_tag] ||= "Options" @ec2_config[:project_tags] << @ec2_config[:project_tag] if @ec2_config[:project_tag] regions = determine_regions() @instances = [] regions.each do |region| begin servers = Fog::Compute.new( :provider => 'AWS', :aws_access_key_id => aws_access_key_id, :aws_secret_access_key => aws_secret_access_key, :region => region ).servers rescue => e puts "[Capify-EC2] Unable to connect to AWS: #{e}.".red.bold exit 1 end servers.each do |server| @instances << server if server.ready? end end end |
Instance Attribute Details
#ec2_config ⇒ Object
Returns the value of attribute ec2_config.
8 9 10 |
# File 'lib/capify-ec2.rb', line 8 def ec2_config @ec2_config end |
#instances ⇒ Object
Returns the value of attribute instances.
8 9 10 |
# File 'lib/capify-ec2.rb', line 8 def instances @instances end |
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
8 9 10 |
# File 'lib/capify-ec2.rb', line 8 def load_balancer @load_balancer end |
Instance Method Details
#aws_access_key_id ⇒ Object
61 62 63 |
# File 'lib/capify-ec2.rb', line 61 def aws_access_key_id @ec2_config[:aws_access_key_id] || Fog.credentials[:aws_access_key_id] || ENV['AWS_ACCESS_KEY_ID'] || raise("Missing AWS Access Key ID") end |
#aws_secret_access_key ⇒ Object
65 66 67 |
# File 'lib/capify-ec2.rb', line 65 def aws_secret_access_key @ec2_config[:aws_secret_access_key] || Fog.credentials[:aws_secret_access_key] || ENV['AWS_SECRET_ACCESS_KEY'] || raise("Missing AWS Secret Access Key") end |
#deregister_instance_from_elb(instance_name) ⇒ Object
164 165 166 167 168 169 170 171 172 |
# File 'lib/capify-ec2.rb', line 164 def deregister_instance_from_elb(instance_name) return unless @ec2_config[:load_balanced] instance = get_instance_by_name(instance_name) return if instance.nil? @@load_balancer = get_load_balancer_by_instance(instance.id) return if @@load_balancer.nil? elb.deregister_instances_from_load_balancer(instance.id, @@load_balancer.id) end |
#deregister_instance_from_elb_by_dns(server_dns) ⇒ Object
201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/capify-ec2.rb', line 201 def deregister_instance_from_elb_by_dns(server_dns) instance = get_instance_by_dns(server_dns) load_balancer = get_load_balancer_by_instance(instance.id) if load_balancer puts "[Capify-EC2] Removing instance from ELB '#{load_balancer.id}'..." result = elb.deregister_instances_from_load_balancer(instance.id, load_balancer.id) raise "Unable to remove instance from ELB '#{load_balancer.id}'..." unless result.status == 200 return load_balancer end false end |
#desired_instances(region = nil) ⇒ Object
118 119 120 |
# File 'lib/capify-ec2.rb', line 118 def desired_instances(region = nil) @ec2_config[:project_tags].empty? ? @instances : project_instances end |
#determine_regions ⇒ Object
57 58 59 |
# File 'lib/capify-ec2.rb', line 57 def determine_regions() @ec2_config[:aws_params][:regions] || [@ec2_config[:aws_params][:region]] end |
#display_instances ⇒ Object
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/capify-ec2.rb', line 69 def display_instances unless desired_instances and desired_instances.any? puts "[Capify-EC2] No instances were found using your 'ec2.yml' configuration.".red.bold return end # Set minimum widths for the variable length instance attributes. column_widths = { :name_min => 4, :type_min => 4, :dns_min => 5, :roles_min => @ec2_config[:aws_roles_tag].length, :options_min => @ec2_config[:aws_options_tag].length } # Find the longest attribute across all instances, to format the columns properly. column_widths[:name] = desired_instances.map{|i| i.name.to_s.ljust( column_widths[:name_min] ) || ' ' * column_widths[:name_min] }.max_by(&:length).length column_widths[:type] = desired_instances.map{|i| i.flavor_id || ' ' * column_widths[:type_min] }.max_by(&:length).length column_widths[:dns] = desired_instances.map{|i| i.contact_point.to_s.ljust( column_widths[:dns_min] ) || ' ' * column_widths[:dns_min] }.max_by(&:length).length column_widths[:roles] = desired_instances.map{|i| i.[@ec2_config[:aws_roles_tag]].to_s.ljust( column_widths[:roles_min] ) || ' ' * column_widths[:roles_min] }.max_by(&:length).length column_widths[:options] = desired_instances.map{|i| i.[@ec2_config[:aws_options_tag]].to_s.ljust( column_widths[:options_min] ) || ' ' * column_widths[:options_min] }.max_by(&:length).length # Title row. puts "#{@ec2_config[:aws_project_tag].bold}: #{@ec2_config[:project_tags].join(', ')}." if @ec2_config[:project_tags].any? puts sprintf "%-3s %s %s %s %s %s %s %s", 'Num' .bold, 'Name' .ljust( column_widths[:name] ).bold, 'ID' .ljust( 10 ).bold, 'Type' .ljust( column_widths[:type] ).bold, 'DNS' .ljust( column_widths[:dns] ).bold, 'Zone' .ljust( 10 ).bold, @ec2_config[:aws_roles_tag] .ljust( column_widths[:roles] ).bold, @ec2_config[:aws_options_tag].ljust( column_widths[:options] ).bold desired_instances.each_with_index do |instance, i| puts sprintf "%02d: %-10s %s %s %s %-10s %s %s", i, (instance.name || '') .ljust( column_widths[:name] ).green, instance.id .ljust( 2 ).red, instance.flavor_id .ljust( column_widths[:type] ).cyan, instance.contact_point .ljust( column_widths[:dns] ).blue.bold, instance.availability_zone .ljust( 10 ).magenta, (instance.[@ec2_config[:aws_roles_tag]] || '') .ljust( column_widths[:roles] ).yellow, (instance.[@ec2_config[:aws_options_tag]] || '').ljust( column_widths[:options] ).yellow end end |
#elb ⇒ Object
143 144 145 |
# File 'lib/capify-ec2.rb', line 143 def elb Fog::AWS::ELB.new(:aws_access_key_id => aws_access_key_id, :aws_secret_access_key => aws_secret_access_key, :region => @ec2_config[:aws_params][:region]) end |
#get_instance_by_dns(dns) ⇒ Object
135 136 137 |
# File 'lib/capify-ec2.rb', line 135 def get_instance_by_dns(dns) desired_instances.select {|instance| instance.dns_name == dns}.first end |
#get_instance_by_name(name) ⇒ Object
131 132 133 |
# File 'lib/capify-ec2.rb', line 131 def get_instance_by_name(name) desired_instances.select {|instance| instance.name == name}.first end |
#get_instances_by_region(roles, region) ⇒ Object
126 127 128 129 |
# File 'lib/capify-ec2.rb', line 126 def get_instances_by_region(roles, region) return unless region desired_instances.select {|instance| instance.availability_zone.match(region) && instance.[@ec2_config[:aws_roles_tag]].split(%r{,\s*}).include?(roles.to_s) rescue false} end |
#get_instances_by_role(role) ⇒ Object
122 123 124 |
# File 'lib/capify-ec2.rb', line 122 def get_instances_by_role(role) desired_instances.select {|instance| instance.[@ec2_config[:aws_roles_tag]].split(%r{,\s*}).include?(role.to_s) rescue false} end |
#get_load_balancer_by_instance(instance_id) ⇒ Object
147 148 149 150 151 152 153 |
# File 'lib/capify-ec2.rb', line 147 def get_load_balancer_by_instance(instance_id) hash = elb.load_balancers.inject({}) do |collect, load_balancer| load_balancer.instances.each {|load_balancer_instance_id| collect[load_balancer_instance_id] = load_balancer} collect end hash[instance_id] end |
#get_load_balancer_by_name(load_balancer_name) ⇒ Object
155 156 157 158 159 160 161 162 |
# File 'lib/capify-ec2.rb', line 155 def get_load_balancer_by_name(load_balancer_name) lbs = {} elb.load_balancers.each do |load_balancer| lbs[load_balancer.id] = load_balancer end lbs[load_balancer_name] end |
#instance_health(load_balancer, instance) ⇒ Object
139 140 141 |
# File 'lib/capify-ec2.rb', line 139 def instance_health(load_balancer, instance) elb.describe_instance_health(load_balancer.id, instance.id).body['DescribeInstanceHealthResult']['InstanceStates'][0]['State'] end |
#instance_health_by_url(dns, port, path, expected_response, options = {}) ⇒ Object
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/capify-ec2.rb', line 244 def instance_health_by_url(dns, port, path, expected_response, = {}) def response_matches_expected?(response, expected_response) if expected_response.kind_of?(Array) expected_response.any?{ |r| response_matches_expected?(response, r) } elsif expected_response.kind_of?(Regexp) (response =~ expected_response) != nil else response == expected_response end end protocol = [:https] ? 'https://' : 'http://' uri = URI("#{protocol}#{dns}:#{port}#{path}") puts "[Capify-EC2] Checking '#{uri}' for the content '#{expected_response.inspect}'..." http = Net::HTTP.new(uri.host, uri.port) result = nil begin Timeout::timeout([:timeout]) do begin result = http.get(uri.path) raise "Server responded with '#{result.code}: #{result.body}', expected '#{expected_response}'" unless response_matches_expected?(result.body, expected_response) rescue => e puts "[Capify-EC2] Unexpected response: #{e}..." sleep 1 retry end end rescue Timeout::Error => e end result ? response_matches_expected?(result.body, expected_response) : false end |
#project_instances ⇒ Object
114 115 116 |
# File 'lib/capify-ec2.rb', line 114 def project_instances @instances.select {|instance| @ec2_config[:project_tags].include?(instance.[@ec2_config[:aws_project_tag]])} end |
#register_instance_in_elb(instance_name, load_balancer_name = '') ⇒ Object
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'lib/capify-ec2.rb', line 174 def register_instance_in_elb(instance_name, load_balancer_name = '') return if !@ec2_config[:load_balanced] instance = get_instance_by_name(instance_name) return if instance.nil? load_balancer = get_load_balancer_by_name(load_balancer_name) || @@load_balancer return if load_balancer.nil? elb.register_instances_with_load_balancer(instance.id, load_balancer.id) fail_after = @ec2_config[:fail_after] || 30 state = instance_health(load_balancer, instance) time_elapsed = 0 while time_elapsed < fail_after break if state == "InService" sleep SLEEP_COUNT time_elapsed += SLEEP_COUNT STDERR.puts 'Verifying Instance Health' state = instance_health(load_balancer, instance) end if state == 'InService' STDERR.puts "#{instance.name}: Healthy" else STDERR.puts "#{instance.name}: tests timed out after #{time_elapsed} seconds." end end |
#reregister_instance_with_elb_by_dns(server_dns, load_balancer, timeout) ⇒ Object
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/capify-ec2.rb', line 216 def reregister_instance_with_elb_by_dns(server_dns, load_balancer, timeout) instance = get_instance_by_dns(server_dns) sleep 10 puts "[Capify-EC2] Re-registering instance with ELB '#{load_balancer.id}'..." result = elb.register_instances_with_load_balancer(instance.id, load_balancer.id) raise "Unable to re-register instance with ELB '#{load_balancer.id}'..." unless result.status == 200 state = nil begin Timeout::timeout(timeout) do begin state = instance_health(load_balancer, instance) raise "Instance not ready" unless state == 'InService' rescue => e puts "[Capify-EC2] Unexpected response: #{e}..." sleep 1 retry end end rescue Timeout::Error => e end state ? state == 'InService' : false end |
#response_matches_expected?(response, expected_response) ⇒ Boolean
245 246 247 248 249 250 251 252 253 |
# File 'lib/capify-ec2.rb', line 245 def response_matches_expected?(response, expected_response) if expected_response.kind_of?(Array) expected_response.any?{ |r| response_matches_expected?(response, r) } elsif expected_response.kind_of?(Regexp) (response =~ expected_response) != nil else response == expected_response end end |
#server_names ⇒ Object
110 111 112 |
# File 'lib/capify-ec2.rb', line 110 def server_names desired_instances.map {|instance| instance.name} end |