This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 307
/
Vagrantfile
85 lines (73 loc) · 2.57 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
80
81
82
83
84
85
# -*- mode: ruby -*-
# vi: set ft=ruby :
$NODES=3
$NODEMEM=256
# Overwrite host locale in ssh session
ENV["LC_ALL"] = "en_US.UTF-8"
# All Vagrant configuration is done here.
Vagrant.configure("2") do |cluster|
# The most common configuration options are documented and commented below.
# For more refer to https://www.vagrantup.com/docs/vagrantfile/
# Every Vagrant virtual environment requires a box to build off of.
# The ordering of these 2 lines expresses a preference for a hypervisor
cluster.vm.provider "virtualbox"
cluster.vm.provider "libvirt"
cluster.vm.provider "vmware_fusion"
cluster.vm.provider "docker"
# Avoid using the Virtualbox guest additions
cluster.vm.synced_folder ".", "/vagrant", disabled: true
if Vagrant.has_plugin?("vagrant-vbguest")
cluster.vbguest.auto_update = false
end
# For convenience, testing and instruction, all you need is 'vagrant up'
# Every vagrant box comes with a user 'vagrant' with password 'vagrant'
# Every vagrant box has the root password 'vagrant'
# host to run ansible and tower
cluster.vm.define "ansible", primary: true do |config|
config.vm.hostname = "ansible"
config.vm.network :private_network, ip: "10.42.0.2"
config.vm.provider :virtualbox do |vb, override|
# This vagrant box is downloaded from https://vagrantcloud.com/centos/7
# Other variants https://app.vagrantup.com/boxes/search
vb.box = "centos/7"
cluster.ssh.insert_key = false
# Don't install your own key (you might not have it)
# Use this: $HOME/.vagrant.d/insecure_private_key
config.ssh.forward_agent = true
vb.customize [
"modifyvm", :id,
"--name", "ansible",
"--memory", "2048",
"--cpus", 1
]
end
config.vm.provider :docker do |vb, override|
config.ssh.username = "root"
config.ssh.password = "root"
vb.has_ssh = true
vb.image = "sickp/centos-sshd:7"
end
end
# hosts to run ansible-core
(1..$NODES).each do |i|
cluster.vm.define "node-#{i}" do |node|
node.vm.hostname = "node-#{i}"
node.vm.network :private_network, ip: "10.42.0.#{i+5}"
node.vm.provider :virtualbox do |vb, override|
vb.box = "centos/7"
vb.customize [
"modifyvm", :id,
"--name", "node-#{i}",
"--memory", "#$NODEMEM",
"--cpus", 1
]
end
node.vm.provider :docker do |vb, override|
node.ssh.username = "root"
node.ssh.password = "root"
vb.has_ssh = true
vb.image = "sickp/centos-sshd:7"
end
end
end
end