gce_command.rb 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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 tint kint test jint)
  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 instance(s) in GCE...'
  38. ah.ignore_bug_6407
  39. ah.run_playbook("playbooks/gce/#{options[:type]}/launch.yml")
  40. end
  41. option :name, :required => false, :type => :string,
  42. :desc => 'The name of the instance to configure.'
  43. option :env, :required => false, :aliases => '-e', :enum => SUPPORTED_ENVS,
  44. :desc => 'The environment of the new instances.'
  45. option :type, :required => false, :enum => LaunchHelper.get_gce_host_types,
  46. :desc => 'The type of the instances to configure.'
  47. desc "config", 'Configures instances.'
  48. def config()
  49. ah = AnsibleHelper.for_gce()
  50. abort 'Error: you can\'t specify both --name and --type' unless options[:type].nil? || options[:name].nil?
  51. abort 'Error: you can\'t specify both --name and --env' unless options[:env].nil? || options[:name].nil?
  52. host_type = nil
  53. if options[:name]
  54. details = GceHelper.get_host_details(options[:name])
  55. ah.extra_vars['oo_host_group_exp'] = options[:name]
  56. ah.extra_vars['oo_env'] = details['env']
  57. host_type = details['host-type']
  58. elsif options[:type] && options[:env]
  59. oo_env_host_type_tag = GceHelper.generate_env_host_type_tag_name(options[:env], options[:type])
  60. ah.extra_vars['oo_host_group_exp'] = "groups['#{oo_env_host_type_tag}']"
  61. ah.extra_vars['oo_env'] = options[:env]
  62. host_type = options[:type]
  63. else
  64. abort 'Error: you need to specify either --name or (--type and --env)'
  65. end
  66. puts
  67. puts "Configuring #{options[:type]} instance(s) in GCE..."
  68. ah.ignore_bug_6407
  69. ah.run_playbook("playbooks/gce/#{host_type}/config.yml")
  70. end
  71. option :name, :required => false, :type => :string,
  72. :desc => 'The name of the instance to terminate.'
  73. option :env, :required => false, :aliases => '-e', :enum => SUPPORTED_ENVS,
  74. :desc => 'The environment of the new instances.'
  75. option :type, :required => false, :enum => LaunchHelper.get_gce_host_types,
  76. :desc => 'The type of the instances to configure.'
  77. option :confirm, :required => false, :type => :boolean,
  78. :desc => 'Terminate without interactive confirmation'
  79. desc "terminate", 'Terminate instances'
  80. def terminate()
  81. ah = AnsibleHelper.for_gce()
  82. abort 'Error: you can\'t specify both --name and --type' unless options[:type].nil? || options[:name].nil?
  83. abort 'Error: you can\'t specify both --name and --env' unless options[:env].nil? || options[:name].nil?
  84. host_type = nil
  85. if options[:name]
  86. details = GceHelper.get_host_details(options[:name])
  87. ah.extra_vars['oo_host_group_exp'] = options[:name]
  88. ah.extra_vars['oo_env'] = details['env']
  89. host_type = details['host-type']
  90. elsif options[:type] && options[:env]
  91. oo_env_host_type_tag = GceHelper.generate_env_host_type_tag_name(options[:env], options[:type])
  92. ah.extra_vars['oo_host_group_exp'] = "groups['#{oo_env_host_type_tag}']"
  93. ah.extra_vars['oo_env'] = options[:env]
  94. host_type = options[:type]
  95. else
  96. abort 'Error: you need to specify either --name or (--type and --env)'
  97. end
  98. puts
  99. puts "Terminating #{options[:type]} instance(s) in GCE..."
  100. ah.ignore_bug_6407
  101. ah.run_playbook("playbooks/gce/#{host_type}/terminate.yml")
  102. end
  103. desc "list", "Lists instances."
  104. def list()
  105. hosts = GceHelper.get_hosts()
  106. puts
  107. puts "Instances"
  108. puts "---------"
  109. hosts.each { |k| puts " #{k.name}" }
  110. puts
  111. end
  112. option :file, :required => true, :type => :string,
  113. :desc => 'The name of the file to copy.'
  114. option :dest, :required => false, :type => :string,
  115. :desc => 'A relative path where files are written to.'
  116. desc "scp_from", "scp files from an instance"
  117. def scp_from(*ssh_ops, host)
  118. if host =~ /^([\w\d_.-]+)@([\w\d-_.]+)$/
  119. user = $1
  120. host = $2
  121. end
  122. path_to_file = options['file']
  123. dest = options['dest']
  124. details = GceHelper.get_host_details(host)
  125. abort "\nError: Instance [#{host}] is not RUNNING\n\n" unless details['gce_status'] == 'RUNNING'
  126. cmd = "scp #{ssh_ops.join(' ')}"
  127. if user.nil?
  128. cmd += " "
  129. else
  130. cmd += " #{user}@"
  131. end
  132. if dest.nil?
  133. download = File.join(Dir.pwd, 'download')
  134. FileUtils.mkdir_p(download) unless File.exists?(download)
  135. cmd += "#{details['gce_public_ip']}:#{path_to_file} download/"
  136. else
  137. cmd += "#{details['gce_public_ip']}:#{path_to_file} #{File.expand_path(dest)}"
  138. end
  139. exec(cmd)
  140. end
  141. desc "ssh", "Ssh to an instance"
  142. def ssh(*ssh_ops, host)
  143. if host =~ /^([\w\d_.-]+)@([\w\d-_.]+)/
  144. user = $1
  145. host = $2
  146. end
  147. details = GceHelper.get_host_details(host)
  148. abort "\nError: Instance [#{host}] is not RUNNING\n\n" unless details['gce_status'] == 'RUNNING'
  149. cmd = "ssh #{ssh_ops.join(' ')}"
  150. if user.nil?
  151. cmd += " "
  152. else
  153. cmd += " #{user}@"
  154. end
  155. cmd += "#{details['gce_public_ip']}"
  156. exec(cmd)
  157. end
  158. option :name, :required => true, :aliases => '-n', :type => :string,
  159. :desc => 'The name of the instance.'
  160. desc 'details', 'Displays details about an instance.'
  161. def details()
  162. name = options[:name]
  163. details = GceHelper.get_host_details(name)
  164. key_size = details.keys.max_by { |k| k.size }.size
  165. header = "Details for #{name}"
  166. puts
  167. puts header
  168. header.size.times { print '-' }
  169. puts
  170. details.each { |k,v| printf("%#{key_size + 2}s: %s\n", k, v) }
  171. puts
  172. end
  173. desc 'types', 'Displays instance types'
  174. def types()
  175. puts
  176. puts "Available Host Types"
  177. puts "--------------------"
  178. LaunchHelper.get_gce_host_types.each { |t| puts " #{t}" }
  179. puts
  180. end
  181. end
  182. end
  183. end