cloud.rb 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. #!/usr/bin/env ruby
  2. require 'thor'
  3. require 'json'
  4. require 'yaml'
  5. require 'securerandom'
  6. require 'fileutils'
  7. SCRIPT_DIR = File.expand_path(File.dirname(__FILE__))
  8. module OpenShift
  9. module Ops
  10. # WARNING: we do not currently support environments with hyphens in the name
  11. SUPPORTED_ENVS = ['prod','stg','int','tint','kint','test']
  12. class GceHelper
  13. def self.list_hosts()
  14. cmd = "#{SCRIPT_DIR}/inventory/gce/gce.py --list"
  15. hosts = %x[#{cmd} 2>&1]
  16. raise "Error: failed to list hosts\n#{hosts}" unless $?.exitstatus == 0
  17. return JSON.parse(hosts)
  18. end
  19. def self.get_host_details(host)
  20. cmd = "#{SCRIPT_DIR}/inventory/gce/gce.py --host #{host}"
  21. details = %x[#{cmd} 2>&1]
  22. raise "Error: failed to get host details\n#{details}" unless $?.exitstatus == 0
  23. retval = JSON.parse(details)
  24. # Convert OpenShift specific tags to entries
  25. retval['gce_tags'].each do |tag|
  26. if tag =~ /\Ahost-type-([\w\d-]+)\z/
  27. retval['host-type'] = $1
  28. end
  29. if tag =~ /\Aenv-([\w\d]+)\z/
  30. retval['env'] = $1
  31. end
  32. end
  33. return retval
  34. end
  35. def self.generate_env_tag(env)
  36. return "env-#{env}"
  37. end
  38. def self.generate_env_tag_name(env)
  39. return "tag_#{generate_env_tag(env)}"
  40. end
  41. def self.generate_host_type_tag(host_type)
  42. return "host-type-#{host_type}"
  43. end
  44. def self.generate_host_type_tag_name(host_type)
  45. return "tag_#{generate_host_type_tag(host_type)}"
  46. end
  47. def self.generate_env_host_type_tag(env, host_type)
  48. return "env-host-type-#{env}-#{host_type}"
  49. end
  50. def self.generate_env_host_type_tag_name(env, host_type)
  51. return "tag_#{generate_env_host_type_tag(env, host_type)}"
  52. end
  53. end
  54. class LaunchHelper
  55. def self.expand_name(name)
  56. return [name] unless name =~ /^([a-zA-Z0-9\-]+)\{(\d+)-(\d+)\}$/
  57. # Regex matched, so grab the values
  58. start_num = $2
  59. end_num = $3
  60. retval = []
  61. start_num.upto(end_num) do |i|
  62. retval << "#{$1}#{i}"
  63. end
  64. return retval
  65. end
  66. def self.get_gce_host_types()
  67. return Dir.glob("#{SCRIPT_DIR}/playbooks/gce/*").map { |d| File.basename(d) }
  68. end
  69. end
  70. class AnsibleHelper
  71. attr_accessor :inventory, :extra_vars, :verbosity, :pipelining
  72. def initialize(extra_vars={}, inventory=nil)
  73. @extra_vars = extra_vars
  74. @verbosity = '-vvvv'
  75. @pipelining = true
  76. end
  77. def run_playbook(playbook)
  78. @inventory = 'inventory/hosts' if @inventory.nil?
  79. # This is used instead of passing in the json on the cli to avoid quoting problems
  80. tmpfile = Tempfile.new('extra_vars')
  81. tmpfile.write(@extra_vars.to_json)
  82. tmpfile.sync()
  83. tmpfile.close()
  84. cmds = []
  85. cmds << %Q[export ANSIBLE_FILTER_PLUGINS="#{Dir.pwd}/filter_plugins"]
  86. # We need this for launching instances, otherwise conflicting keys and what not kill it
  87. cmds << %q[export ANSIBLE_TRANSPORT="ssh"]
  88. cmds << %Q[export ANSIBLE_SSH_ARGS="-o ForwardAgent=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"]
  89. # We need pipelining off so that we can do sudo to enable the root account
  90. cmds << %Q[export ANSIBLE_SSH_PIPELINING='#{@pipelining.to_s}']
  91. ssh_key_arg = "--private-key=~/.ssh/mmcgrath_libra" if File.file?(ENV['HOME']+'/.ssh/mmcgrath_libra.pem')
  92. cmds << %Q[time -p ansible-playbook -i #{@inventory} #{@verbosity} #{playbook} #{ssh_key_arg} --extra-vars '@#{tmpfile.path}']
  93. cmd = cmds.join(' ; ')
  94. system(cmd)
  95. tmpfile.unlink
  96. end
  97. def merge_extra_vars_file(file)
  98. vars = YAML.load_file(file)
  99. @extra_vars.merge!(vars)
  100. end
  101. def self.for_gce()
  102. ah = AnsibleHelper.new()
  103. # GCE specific configs
  104. ah.extra_vars['gce_pem_file'] = "#{ENV['HOME']}/.ssh/os302gce_priv_key.pem"
  105. ah.extra_vars['gce_service_account_email'] = '198287808360-f457cs26hutqeosmlje1eosfeqo0krlg@developer.gserviceaccount.com'
  106. ah.extra_vars['gce_project_id'] = 'corded-cable-672'
  107. ah.inventory = 'inventory/gce/gce.py'
  108. return ah
  109. end
  110. end
  111. class GceCommand < Thor
  112. option :type, :required => true, :enum => LaunchHelper.get_gce_host_types,
  113. :desc => 'The host type of the new instances.'
  114. option :env, :required => true, :aliases => '-e', :enum => OpenShift::Ops::SUPPORTED_ENVS,
  115. :desc => 'The environment of the new instances.'
  116. option :count, :default => 1, :aliases => '-c', :type => :numeric,
  117. :desc => 'The number of instances to create'
  118. option :tag, :type => :array,
  119. :desc => 'The tag(s) to add to the new instances. Allowed characters are letters, numbers, and hyphens.'
  120. desc "launch", "Launches instances."
  121. def launch()
  122. # Expand all of the instance names so that we have a complete array
  123. names = []
  124. options[:count].times { names << "#{options[:env]}-#{options[:type]}-#{SecureRandom.hex(5)}" }
  125. ah = AnsibleHelper.for_gce()
  126. # GCE specific configs
  127. ah.extra_vars['oo_new_inst_names'] = names
  128. ah.extra_vars['oo_new_inst_tags'] = options[:tag]
  129. ah.extra_vars['oo_env'] = options[:env]
  130. # Add a created by tag
  131. ah.extra_vars['oo_new_inst_tags'] = [] if ah.extra_vars['oo_new_inst_tags'].nil?
  132. ah.extra_vars['oo_new_inst_tags'] << "created-by-#{ENV['USER']}"
  133. ah.extra_vars['oo_new_inst_tags'] << GceHelper.generate_env_tag(options[:env])
  134. ah.extra_vars['oo_new_inst_tags'] << GceHelper.generate_host_type_tag(options[:type])
  135. ah.extra_vars['oo_new_inst_tags'] << GceHelper.generate_env_host_type_tag(options[:env], options[:type])
  136. puts
  137. puts "Creating instance(s) in GCE..."
  138. puts
  139. puts " .---- Disregard this (ansible bug 6407) ----."
  140. puts " V V"
  141. ah.run_playbook("playbooks/gce/#{options[:type]}/launch.yml")
  142. end
  143. option :name, :required => false, :type => :string,
  144. :desc => 'The name of the instance to configure.'
  145. option :env, :required => false, :aliases => '-e', :enum => OpenShift::Ops::SUPPORTED_ENVS,
  146. :desc => 'The environment of the new instances.'
  147. option :type, :required => false, :enum => LaunchHelper.get_gce_host_types,
  148. :desc => 'The type of the instances to configure.'
  149. desc "config", 'Configures instances.'
  150. def config()
  151. ah = AnsibleHelper.for_gce()
  152. abort 'Error: you can\'t specify both --name and --type' unless options[:type].nil? || options[:name].nil?
  153. abort 'Error: you can\'t specify both --name and --env' unless options[:env].nil? || options[:name].nil?
  154. host_type = nil
  155. if options[:name]
  156. details = GceHelper.get_host_details(options[:name])
  157. ah.extra_vars['oo_host_group_exp'] = options[:name]
  158. ah.extra_vars['oo_env'] = details['env']
  159. host_type = details['host-type']
  160. elsif options[:type] && options[:env]
  161. oo_env_host_type_tag = GceHelper.generate_env_host_type_tag_name(options[:env], options[:type])
  162. ah.extra_vars['oo_host_group_exp'] = "groups['#{oo_env_host_type_tag}']"
  163. ah.extra_vars['oo_env'] = options[:env]
  164. host_type = options[:type]
  165. else
  166. abort 'Error: you need to specify either --name or (--type and --env)'
  167. end
  168. puts
  169. puts "Configuring #{options[:type]} instance(s) in GCE..."
  170. puts
  171. puts " .---- Disregard this (ansible bug 6407) ----."
  172. puts " V V"
  173. ah.run_playbook("playbooks/gce/#{host_type}/config.yml")
  174. end
  175. desc "list", "Lists instances."
  176. def list()
  177. hosts = GceHelper.list_hosts()
  178. data = {}
  179. hosts.each do |key,value|
  180. value.each { |h| (data[h] ||= []) << key }
  181. end
  182. puts
  183. puts "Instances"
  184. puts "---------"
  185. data.keys.sort.each { |k| puts " #{k}" }
  186. puts
  187. end
  188. option :file, :required => true, :type => :string,
  189. :desc => 'The name of the file to copy.'
  190. option :dest, :required => false, :type => :string,
  191. :desc => 'A relative path where files are written to.'
  192. desc "scp_from", "scp files from an instance"
  193. def scp_from(*ssh_ops, host)
  194. if host =~ /^([\w\d_.-]+)@([\w\d-_.]+)$/
  195. user = $1
  196. host = $2
  197. end
  198. path_to_file = options['file']
  199. dest = options['dest']
  200. details = GceHelper.get_host_details(host)
  201. abort "\nError: Instance [#{host}] is not RUNNING\n\n" unless details['gce_status'] == 'RUNNING'
  202. cmd = "scp #{ssh_ops.join(' ')}"
  203. if user.nil?
  204. cmd += " "
  205. else
  206. cmd += " #{user}@"
  207. end
  208. if dest.nil?
  209. download = File.join(Dir.pwd, 'download')
  210. FileUtils.mkdir_p(download) unless File.exists?(download)
  211. cmd += "#{details['gce_public_ip']}:#{path_to_file} download/"
  212. else
  213. cmd += "#{details['gce_public_ip']}:#{path_to_file} #{File.expand_path(dest)}"
  214. end
  215. exec(cmd)
  216. end
  217. desc "ssh", "Ssh to an instance"
  218. def ssh(*ssh_ops, host)
  219. puts host
  220. if host =~ /^([\w\d_.-]+)@([\w\d-_.]+)/
  221. user = $1
  222. host = $2
  223. end
  224. puts "user=#{user}"
  225. puts "host=#{host}"
  226. details = GceHelper.get_host_details(host)
  227. abort "\nError: Instance [#{host}] is not RUNNING\n\n" unless details['gce_status'] == 'RUNNING'
  228. cmd = "ssh #{ssh_ops.join(' ')}"
  229. if user.nil?
  230. cmd += " "
  231. else
  232. cmd += " #{user}@"
  233. end
  234. cmd += "#{details['gce_public_ip']}"
  235. exec(cmd)
  236. end
  237. option :name, :required => true, :aliases => '-n', :type => :string,
  238. :desc => 'The name of the instance.'
  239. desc 'details', 'Displays details about an instance.'
  240. def details()
  241. name = options[:name]
  242. details = GceHelper.get_host_details(name)
  243. key_size = details.keys.max_by { |k| k.size }.size
  244. header = "Details for #{name}"
  245. puts
  246. puts header
  247. header.size.times { print '-' }
  248. puts
  249. details.each { |k,v| printf("%#{key_size + 2}s: %s\n", k, v) }
  250. puts
  251. end
  252. desc 'types', 'Displays instance types'
  253. def types()
  254. puts
  255. puts "Available Host Types"
  256. puts "--------------------"
  257. LaunchHelper.get_gce_host_types.each { |t| puts " #{t}" }
  258. puts
  259. end
  260. end
  261. class CloudCommand < Thor
  262. desc 'gce', 'Manages Google Compute Engine assets'
  263. subcommand "gce", GceCommand
  264. end
  265. end
  266. end
  267. if __FILE__ == $0
  268. Dir.chdir(SCRIPT_DIR) do
  269. # Kick off thor
  270. OpenShift::Ops::CloudCommand.start(ARGV)
  271. end
  272. end