ansible_helper.rb 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. require 'json'
  2. require 'parseconfig'
  3. module OpenShift
  4. module Ops
  5. class AnsibleHelper
  6. MYDIR = File.expand_path(File.dirname(__FILE__))
  7. attr_accessor :inventory, :extra_vars, :verbosity, :pipelining
  8. def initialize(extra_vars={}, inventory=nil)
  9. @extra_vars = extra_vars
  10. @verbosity = '-vvvv'
  11. @pipelining = true
  12. end
  13. def all_eof(files)
  14. files.find { |f| !f.eof }.nil?
  15. end
  16. def run_playbook(playbook)
  17. @inventory = 'inventory/hosts' if @inventory.nil?
  18. # This is used instead of passing in the json on the cli to avoid quoting problems
  19. tmpfile = Tempfile.open('extra_vars') { |f| f.write(@extra_vars.to_json); f}
  20. cmds = []
  21. #cmds << 'set -x'
  22. cmds << %Q[export ANSIBLE_FILTER_PLUGINS="#{Dir.pwd}/filter_plugins"]
  23. # We need this for launching instances, otherwise conflicting keys and what not kill it
  24. cmds << %q[export ANSIBLE_TRANSPORT="ssh"]
  25. cmds << %q[export ANSIBLE_SSH_ARGS="-o ForwardAgent=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"]
  26. # We need pipelining off so that we can do sudo to enable the root account
  27. cmds << %Q[export ANSIBLE_SSH_PIPELINING='#{@pipelining.to_s}']
  28. cmds << %Q[time ansible-playbook -i #{@inventory} #{@verbosity} #{playbook} --extra-vars '@#{tmpfile.path}' ]
  29. cmd = cmds.join(' ; ')
  30. pid = spawn(cmd, :out => $stdout, :err => $stderr, :close_others => true)
  31. _, state = Process.wait2(pid)
  32. if 0 != state.exitstatus
  33. raise %Q[Warning failed with exit code: #{state.exitstatus}
  34. #{cmd}
  35. extra_vars: #{@extra_vars.to_json}
  36. ]
  37. end
  38. ensure
  39. tmpfile.unlink if tmpfile
  40. end
  41. def merge_extra_vars_file(file)
  42. vars = YAML.load_file(file)
  43. @extra_vars.merge!(vars)
  44. end
  45. def self.for_gce
  46. ah = AnsibleHelper.new
  47. # GCE specific configs
  48. gce_ini = "#{MYDIR}/../inventory/gce/gce.ini"
  49. config = ParseConfig.new(gce_ini)
  50. if config['gce']['gce_project_id'].to_s.empty?
  51. raise %Q['gce_project_id' not set in #{gce_ini}]
  52. end
  53. ah.extra_vars['gce_project_id'] = config['gce']['gce_project_id']
  54. if config['gce']['gce_service_account_pem_file_path'].to_s.empty?
  55. raise %Q['gce_service_account_pem_file_path' not set in #{gce_ini}]
  56. end
  57. ah.extra_vars['gce_pem_file'] = config['gce']['gce_service_account_pem_file_path']
  58. if config['gce']['gce_service_account_email_address'].to_s.empty?
  59. raise %Q['gce_service_account_email_address' not set in #{gce_ini}]
  60. end
  61. ah.extra_vars['gce_service_account_email'] = config['gce']['gce_service_account_email_address']
  62. ah.inventory = 'inventory/gce/gce.py'
  63. return ah
  64. end
  65. def self.for_aws
  66. ah = AnsibleHelper.new
  67. ah.inventory = 'inventory/aws/ec2.py'
  68. return ah
  69. end
  70. end
  71. end
  72. end