Vagrantfile 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. VAGRANTFILE_API_VERSION = "2"
  4. unless Vagrant.has_plugin?("vagrant-hostmanager")
  5. raise 'vagrant-hostmanager plugin is required'
  6. end
  7. Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  8. deployment_type = ENV['OPENSHIFT_DEPLOYMENT_TYPE'] || 'origin'
  9. num_nodes = (ENV['OPENSHIFT_NUM_NODES'] || 2).to_i
  10. config.hostmanager.enabled = true
  11. config.hostmanager.manage_host = true
  12. config.hostmanager.include_offline = true
  13. config.ssh.insert_key = false
  14. if deployment_type === 'enterprise'
  15. unless Vagrant.has_plugin?('vagrant-registration')
  16. raise 'vagrant-registration-plugin is required for enterprise deployment'
  17. end
  18. username = ENV['rhel_subscription_user']
  19. password = ENV['rhel_subscription_pass']
  20. unless username and password
  21. raise 'rhel_subscription_user and rhel_subscription_pass are required'
  22. end
  23. config.registration.username = username
  24. config.registration.password = password
  25. # FIXME this is temporary until vagrant/ansible registration modules
  26. # are capable of handling specific subscription pools
  27. if not ENV['rhel_subscription_pool'].nil?
  28. config.vm.provision "shell" do |s|
  29. s.inline = "subscription-manager attach --pool=$1 || true"
  30. s.args = "#{ENV['rhel_subscription_pool']}"
  31. end
  32. end
  33. end
  34. config.vm.provider "virtualbox" do |vbox, override|
  35. override.vm.box = "centos/7"
  36. vbox.memory = 1024
  37. vbox.cpus = 2
  38. # Enable multiple guest CPUs if available
  39. vbox.customize ["modifyvm", :id, "--ioapic", "on"]
  40. end
  41. config.vm.provider "libvirt" do |libvirt, override|
  42. libvirt.cpus = 2
  43. libvirt.memory = 1024
  44. libvirt.driver = 'kvm'
  45. case deployment_type
  46. when "enterprise"
  47. override.vm.box = "rhel-7"
  48. when "origin"
  49. override.vm.box = "centos/7"
  50. override.vm.box_download_checksum = "b2a9f7421e04e73a5acad6fbaf4e9aba78b5aeabf4230eebacc9942e577c1e05"
  51. override.vm.box_download_checksum_type = "sha256"
  52. end
  53. end
  54. num_nodes.times do |n|
  55. node_index = n+1
  56. config.vm.define "node#{node_index}" do |node|
  57. node.vm.hostname = "ose3-node#{node_index}.example.com"
  58. node.vm.network :private_network, ip: "192.168.100.#{200 + n}"
  59. config.vm.provision "shell", inline: "nmcli connection reload; systemctl restart NetworkManager.service"
  60. end
  61. end
  62. config.vm.define "master" do |master|
  63. master.vm.hostname = "ose3-master.example.com"
  64. master.vm.network :private_network, ip: "192.168.100.100"
  65. master.vm.network :forwarded_port, guest: 8443, host: 8443
  66. config.vm.provision "shell", inline: "nmcli connection reload; systemctl restart NetworkManager.service"
  67. master.vm.provision "ansible" do |ansible|
  68. ansible.limit = 'all'
  69. ansible.sudo = true
  70. ansible.groups = {
  71. "masters" => ["master"],
  72. "nodes" => ["master", "node1", "node2"],
  73. }
  74. ansible.extra_vars = {
  75. deployment_type: deployment_type,
  76. }
  77. ansible.playbook = "playbooks/byo/vagrant.yml"
  78. end
  79. end
  80. end