-
Notifications
You must be signed in to change notification settings - Fork 5
/
Vagrantfile
79 lines (67 loc) · 2.95 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
unless Vagrant.has_plugin?("vagrant-hostmanager")
raise 'vagrant-hostmanager plugin is required'
end
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
num_nodes = (ENV['OPENSHIFT_NUM_NODES'] || 2).to_i
config.vm.provision :hostmanager
config.hostmanager.manage_host = true
config.hostmanager.include_offline = true
config.ssh.insert_key = false
config.vm.provider "virtualbox" do |vbox, override|
override.vm.box = "centos/7"
vbox.memory = 1024
vbox.cpus = 2
# Enable multiple guest CPUs if available
vbox.customize ["modifyvm", :id, "--ioapic", "on"]
end
if Vagrant.has_plugin?("vagrant-cachier")
# Configure cached packages to be shared between instances of the same base box.
# More info on http://fgrehm.viewdocs.io/vagrant-cachier/usage
config.cache.scope = :box
# OPTIONAL: If you are using VirtualBox, you might want to use that to enable
# NFS for shared folders. This is also very useful for vagrant-libvirt if you
# want bi-directional sync
config.cache.synced_folder_opts = {
type: :nfs,
# The nolock option can be useful for an NFSv3 client that wants to avoid the
# NLM sideband protocol. Without this option, apt-get might hang if it tries
# to lock files needed for /var/cache/* operations. All of this can be avoided
# by using NFSv4 everywhere. Please note that the tcp option is not the default.
mount_options: ['rw', 'vers=3', 'tcp', 'nolock']
}
# For more information please check http://docs.vagrantup.com/v2/synced-folders/basic_usage.html
end
config.vm.provider "libvirt" do |libvirt, override|
libvirt.cpus = 2
libvirt.memory = 1024
libvirt.driver = 'kvm'
override.vm.box = "centos/7"
override.vm.box_download_checksum = "b2a9f7421e04e73a5acad6fbaf4e9aba78b5aeabf4230eebacc9942e577c1e05"
override.vm.box_download_checksum_type = "sha256"
end
config.vm.synced_folder ".", "/home/vagrant/sync", disabled: true
num_nodes.times do |n|
node_index = n+1
config.vm.define "node#{node_index}" do |node|
node.vm.hostname = "cccp-node#{node_index}.example.com"
node.vm.network :private_network, ip: "192.168.100.#{200 + n}"
node.vm.synced_folder ".", "/home/vagrant/sync", disabled: true
# config.vm.provision "shell", inline: "nmcli connection reload; systemctl restart NetworkManager.service"
end
end
config.vm.define "master" do |master|
master.vm.hostname = "cccp-master.example.com"
master.vm.network :private_network, ip: "192.168.100.100"
master.vm.network :forwarded_port, guest: 8443, host: 8443
config.vm.provision "shell", inline: "nmcli connection reload; systemctl restart NetworkManager.service"
master.vm.provision "ansible" do |ansible|
ansible.limit = 'all'
ansible.sudo = true
ansible.inventory_path = "./hosts.vagrant"
ansible.playbook = "vagrant.yml"
end
end
end