gce_command.rb 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. require 'thor'
  2. require 'securerandom'
  3. require 'fileutils'
  4. require_relative 'gce_helper'
  5. require_relative 'launch_helper'
  6. require_relative 'ansible_helper'
  7. module OpenShift
  8. module Ops
  9. class GceCommand < Thor
  10. # WARNING: we do not currently support environments with hyphens in the name
  11. SUPPORTED_ENVS = %w(prod stg int twiest gshipley kint test jhonce amint tdint lint jdetiber)
  12. option :type, :required => true, :enum => LaunchHelper.get_gce_host_types,
  13. :desc => 'The host type of the new instances.'
  14. option :env, :required => true, :aliases => '-e', :enum => SUPPORTED_ENVS,
  15. :desc => 'The environment of the new instances.'
  16. option :count, :default => 1, :aliases => '-c', :type => :numeric,
  17. :desc => 'The number of instances to create'
  18. option :tag, :type => :array,
  19. :desc => 'The tag(s) to add to the new instances. Allowed characters are letters, numbers, and hyphens.'
  20. desc "launch", "Launches instances."
  21. def launch()
  22. # Expand all of the instance names so that we have a complete array
  23. names = []
  24. options[:count].times { names << "#{options[:env]}-#{options[:type]}-#{SecureRandom.hex(5)}" }
  25. ah = AnsibleHelper.for_gce()
  26. # GCE specific configs
  27. ah.extra_vars['oo_new_inst_names'] = names
  28. ah.extra_vars['oo_new_inst_tags'] = options[:tag]
  29. ah.extra_vars['oo_env'] = options[:env]
  30. # Add a created by tag
  31. ah.extra_vars['oo_new_inst_tags'] = [] if ah.extra_vars['oo_new_inst_tags'].nil?
  32. ah.extra_vars['oo_new_inst_tags'] << "created-by-#{ENV['USER']}"
  33. ah.extra_vars['oo_new_inst_tags'] << GceHelper.generate_env_tag(options[:env])
  34. ah.extra_vars['oo_new_inst_tags'] << GceHelper.generate_host_type_tag(options[:type])
  35. ah.extra_vars['oo_new_inst_tags'] << GceHelper.generate_env_host_type_tag(options[:env], options[:type])
  36. puts
  37. puts "Creating #{options[:count]} #{options[:type]} instance(s) in GCE..."
  38. ah.run_playbook("playbooks/gce/#{options[:type]}/launch.yml")
  39. end
  40. option :name, :required => false, :type => :string,
  41. :desc => 'The name of the instance to configure.'
  42. option :env, :required => false, :aliases => '-e', :enum => SUPPORTED_ENVS,
  43. :desc => 'The environment of the new instances.'
  44. option :type, :required => false, :enum => LaunchHelper.get_gce_host_types,
  45. :desc => 'The type of the instances to configure.'
  46. desc "config", 'Configures instances.'
  47. def config()
  48. ah = AnsibleHelper.for_gce()
  49. abort 'Error: you can\'t specify both --name and --type' unless options[:type].nil? || options[:name].nil?
  50. abort 'Error: you can\'t specify both --name and --env' unless options[:env].nil? || options[:name].nil?
  51. host_type = nil
  52. if options[:name]
  53. details = GceHelper.get_host_details(options[:name])
  54. ah.extra_vars['oo_host_group_exp'] = options[:name]
  55. ah.extra_vars['oo_env'] = details['env']
  56. host_type = details['host-type']
  57. elsif options[:type] && options[:env]
  58. oo_env_host_type_tag = GceHelper.generate_env_host_type_tag_name(options[:env], options[:type])
  59. ah.extra_vars['oo_host_group_exp'] = "groups['#{oo_env_host_type_tag}']"
  60. ah.extra_vars['oo_env'] = options[:env]
  61. host_type = options[:type]
  62. else
  63. abort 'Error: you need to specify either --name or (--type and --env)'
  64. end
  65. puts
  66. puts "Configuring #{options[:type]} instance(s) in GCE..."
  67. ah.run_playbook("playbooks/gce/#{host_type}/config.yml")
  68. end
  69. option :name, :required => false, :type => :string,
  70. :desc => 'The name of the instance to terminate.'
  71. option :env, :required => false, :aliases => '-e', :enum => SUPPORTED_ENVS,
  72. :desc => 'The environment of the new instances.'
  73. option :type, :required => false, :enum => LaunchHelper.get_gce_host_types,
  74. :desc => 'The type of the instances to configure.'
  75. option :confirm, :required => false, :type => :boolean,
  76. :desc => 'Terminate without interactive confirmation'
  77. desc "terminate", 'Terminate instances'
  78. def terminate()
  79. ah = AnsibleHelper.for_gce()
  80. abort 'Error: you can\'t specify both --name and --type' unless options[:type].nil? || options[:name].nil?
  81. abort 'Error: you can\'t specify both --name and --env' unless options[:env].nil? || options[:name].nil?
  82. host_type = nil
  83. if options[:name]
  84. details = GceHelper.get_host_details(options[:name])
  85. ah.extra_vars['oo_host_group_exp'] = options[:name]
  86. ah.extra_vars['oo_env'] = details['env']
  87. host_type = details['host-type']
  88. elsif options[:type] && options[:env]
  89. oo_env_host_type_tag = GceHelper.generate_env_host_type_tag_name(options[:env], options[:type])
  90. ah.extra_vars['oo_host_group_exp'] = "groups['#{oo_env_host_type_tag}']"
  91. ah.extra_vars['oo_env'] = options[:env]
  92. host_type = options[:type]
  93. else
  94. abort 'Error: you need to specify either --name or (--type and --env)'
  95. end
  96. puts
  97. puts "Terminating #{options[:type]} instance(s) in GCE..."
  98. ah.run_playbook("playbooks/gce/#{host_type}/terminate.yml")
  99. end
  100. option :env, :required => false, :aliases => '-e', :enum => SUPPORTED_ENVS,
  101. :desc => 'The environment to list.'
  102. desc "list", "Lists instances."
  103. def list()
  104. hosts = GceHelper.get_hosts()
  105. hosts.delete_if { |h| h.env != options[:env] } unless options[:env].nil?
  106. fmt_str = "%34s %5s %8s %17s %7s"
  107. puts
  108. puts fmt_str % ['Name','Env', 'State', 'IP Address', 'Created By']
  109. puts fmt_str % ['----','---', '-----', '----------', '----------']
  110. hosts.each { |h| puts fmt_str % [h.name, h.env, h.state, h.public_ip, h.created_by ] }
  111. puts
  112. end
  113. option :file, :required => true, :type => :string,
  114. :desc => 'The name of the file to copy.'
  115. option :dest, :required => false, :type => :string,
  116. :desc => 'A relative path where files are written to.'
  117. desc "scp_from", "scp files from an instance"
  118. def scp_from(*ssh_ops, host)
  119. if host =~ /^([\w\d_.\-]+)@([\w\d\-_.]+)$/
  120. user = $1
  121. host = $2
  122. end
  123. path_to_file = options['file']
  124. dest = options['dest']
  125. details = GceHelper.get_host_details(host)
  126. abort "\nError: Instance [#{host}] is not RUNNING\n\n" unless details['gce_status'] == 'RUNNING'
  127. cmd = "scp #{ssh_ops.join(' ')}"
  128. if user.nil?
  129. cmd += " "
  130. else
  131. cmd += " #{user}@"
  132. end
  133. if dest.nil?
  134. download = File.join(Dir.pwd, 'download')
  135. FileUtils.mkdir_p(download) unless File.exists?(download)
  136. cmd += "#{details['gce_public_ip']}:#{path_to_file} download/"
  137. else
  138. cmd += "#{details['gce_public_ip']}:#{path_to_file} #{File.expand_path(dest)}"
  139. end
  140. exec(cmd)
  141. end
  142. desc "ssh", "Ssh to an instance"
  143. def ssh(*ssh_ops, host)
  144. if host =~ /^([\w\d_.\-]+)@([\w\d\-_.]+)/
  145. user = $1
  146. host = $2
  147. end
  148. details = GceHelper.get_host_details(host)
  149. abort "\nError: Instance [#{host}] is not RUNNING\n\n" unless details['gce_status'] == 'RUNNING'
  150. cmd = "ssh #{ssh_ops.join(' ')}"
  151. if user.nil?
  152. cmd += " "
  153. else
  154. cmd += " #{user}@"
  155. end
  156. cmd += "#{details['gce_public_ip']}"
  157. exec(cmd)
  158. end
  159. option :name, :required => true, :aliases => '-n', :type => :string,
  160. :desc => 'The name of the instance.'
  161. desc 'details', 'Displays details about an instance.'
  162. def details()
  163. name = options[:name]
  164. details = GceHelper.get_host_details(name)
  165. key_size = details.keys.max_by { |k| k.size }.size
  166. header = "Details for #{name}"
  167. puts
  168. puts header
  169. header.size.times { print '-' }
  170. puts
  171. details.each { |k,v| printf("%#{key_size + 2}s: %s\n", k, v) }
  172. puts
  173. end
  174. desc 'types', 'Displays instance types'
  175. def types()
  176. puts
  177. puts "Available Host Types"
  178. puts "--------------------"
  179. LaunchHelper.get_gce_host_types.each { |t| puts " #{t}" }
  180. puts
  181. end
  182. end
  183. end
  184. end