-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
70 lines (62 loc) · 4.1 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.require_version ">= 1.6.0"
VAGRANTFILE_API_VERSION = "2"
# YAML module for reading box configurations.
require 'yaml'
# server configs from YAML/YML file
servers_list = YAML.load_file(File.join(File.dirname(__FILE__), 'provisioning/servers_list.yml'))
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Disable updates
config.vm.box_check_update = false
servers_list.each do |server|
config.vm.define server["vagrant_box_host"] do |box|
box.vm.box = server["vagrant_box"]
box.vm.hostname = server["vagrant_box_host"]
box.vm.network server["network_type"], ip: server["vagrant_box_ip"]
box.vm.network "forwarded_port", guest: server["guest_port"], host: server["host_port"], id: 'elastic_port'
box.vm.synced_folder ".", "/vagrant", disabled: true # archlinux only
box.vm.provider "virtualbox" do |vb|
vb.name = server["vbox_name"]
vb.memory = server["vbox_ram"]
vb.cpus = server["vbox_cpu"]
vb.gui = false
vb.customize ["modifyvm", :id, "--groups", "/chrootgrp"] # create vbox group
unless server["storage_bootstrap"].to_s.strip.empty?
# storage configs from YAML/YML file
devices_list = YAML.load_file(File.join(File.dirname(__FILE__), 'provisioning/storage_list.yml'))
devices_list.each do |device|
case device["system_bus_type"]
when "ide" # existing controller only
vb.customize ["createmedium", "--filename", device["file_to_controller_disk"], "--variant", "Fixed", "--size", device["controller_disk_size"]]
vb.customize ["storageattach", :id, "--storagectl", device["system_bus_name"], "--type", device["medium_type"], "--medium", device["file_to_controller_disk"], "--port", device["medium_port"], "--device", device["medium_device"]]
when "sata" # existing controller only
vb.customize ["createmedium", "--filename", device["file_to_controller_disk"], "--variant", "Fixed", "--size", device["controller_disk_size"]]
vb.customize ["storageattach", :id, "--storagectl", device["system_bus_name"], "--type", device["medium_type"], "--medium", device["file_to_controller_disk"], "--port", device["medium_port"]]
else
vb.customize ["createmedium", "--filename", device["file_to_controller_disk"], "--variant", "Fixed", "--size", device["controller_disk_size"]]
vb.customize ["storagectl", :id, "--name", device["system_bus_name"], "--add", device["system_bus_type"], "--controller", device["disk_controller_type"], "--portcount", device["disk_controller_portcount"], "--bootable", "off", "--hostiocache", "on"]
vb.customize ["storageattach", :id, "--storagectl", device["system_bus_name"], "--type", device["medium_type"], "--medium", device["file_to_controller_disk"], "--port", device["medium_port"]]
end # end of case
end # end of unless
end
end # end of box.vm.providers
# box.vm.provision "ansible_local" do |ansible|
# ansible.compatibility_mode = "2.0"
# ansible.compatibility_mode = server["ansible_compatibility_mode"]
# ansible.version = server["ansible_version"]
# ansible.playbook = server["server_bootstrap"]
# ansible.inventory_path = 'provisioning/hosts'
# ansible.verbose = "vvvv" # debug
# ansible.galaxy_role_file = "/vagrant/requirements.yml"
# ansible.galaxy_roles_path = "/etc/ansible/roles"
# ansible.galaxy_command = "sudo ansible-galaxy install --role-file=%{role_file} --roles-path=%{roles_path} --force"
# end # end if box.vm.provision
box.vm.provision "shell", path: server["server_script"]
end # end of config.vm
end # end of servers_list.each loop
end # end of Vagrant.configure