aws_helper.rb 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. require 'fileutils'
  2. module OpenShift
  3. module Ops
  4. class AwsHelper
  5. MYDIR = File.expand_path(File.dirname(__FILE__))
  6. def self.get_list()
  7. cmd = "#{MYDIR}/../inventory/aws/ec2.py --list"
  8. hosts = %x[#{cmd} 2>&1]
  9. raise "Error: failed to list hosts\n#{hosts}" unless $?.exitstatus == 0
  10. return JSON.parse(hosts)
  11. end
  12. def self.get_hosts()
  13. hosts = get_list()
  14. retval = []
  15. hosts['_meta']['hostvars'].each do |host, info|
  16. retval << OpenStruct.new({
  17. :name => info['ec2_tag_Name'] || 'UNSET',
  18. :env => info['ec2_tag_environment'] || 'UNSET',
  19. :public_ip => info['ec2_ip_address'],
  20. :public_dns => info['ec2_public_dns_name'],
  21. :state => info['ec2_state'],
  22. :created_by => info['ec2_tag_created-by']
  23. })
  24. end
  25. retval.sort_by! { |h| [h.env, h.state, h.name] }
  26. return retval
  27. end
  28. def self.get_host_details(host)
  29. hosts = get_list()
  30. dns_names = hosts["tag_Name_#{host}"]
  31. raise "Host not found [#{host}]" if dns_names.nil?
  32. raise "Multiple entries found for [#{host}]" if dns_names.size > 1
  33. return hosts['_meta']['hostvars'][dns_names.first]
  34. end
  35. def self.check_creds()
  36. raise "AWS_ACCESS_KEY_ID environment variable must be set" if ENV['AWS_ACCESS_KEY_ID'].nil?
  37. raise "AWS_SECRET_ACCESS_KEY environment variable must be set" if ENV['AWS_SECRET_ACCESS_KEY'].nil?
  38. end
  39. def self.clear_inventory_cache()
  40. path = "#{ENV['HOME']}/.ansible/tmp"
  41. cache_files = ["#{path}/ansible-ec2.cache", "#{path}/ansible-ec2.index"]
  42. FileUtils.rm_f(cache_files)
  43. end
  44. def self.generate_env_tag(env)
  45. return { "environment" => env }
  46. end
  47. def self.generate_env_tag_name(env)
  48. h = generate_env_tag(env)
  49. return "tag_#{h.keys.first}_#{h.values.first}"
  50. end
  51. def self.generate_host_type_tag(host_type)
  52. return { "host-type" => host_type }
  53. end
  54. def self.generate_host_type_tag_name(host_type)
  55. h = generate_host_type_tag(host_type)
  56. return "tag_#{h.keys.first}_#{h.values.first}"
  57. end
  58. def self.generate_env_host_type_tag(env, host_type)
  59. return { "env-host-type" => "#{env}-#{host_type}" }
  60. end
  61. def self.generate_env_host_type_tag_name(env, host_type)
  62. h = generate_env_host_type_tag(env, host_type)
  63. return "tag_#{h.keys.first}_#{h.values.first}"
  64. end
  65. end
  66. end
  67. end