ansible_helper.rb 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 -p 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. def ignore_bug_6407
  71. puts
  72. puts %q[ .---- Spurious warning "It is unnecessary to use '{{' in loops" (ansible bug 6407) ----.]
  73. puts %q[ V V]
  74. end
  75. end
  76. end
  77. end