blob: dccee815aa71e2c8b93d3a981fe77ff393f09027 [file] [log] [blame]
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -04001# -*- mode: ruby -*-
2# vi: set ft=ruby :
3
4# This Vagrantfile is used for testing the installer. It creates 3 servers
5# with a vanilla ubutu server image on it.
Sergio Slobodriand24189e2017-06-10 23:27:15 -04006require 'yaml'
7
8# Load the settings which are tweaked by the installer to avoid naming conflicts
9settings = YAML.load_file 'settings.vagrant.yaml'
10
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040011Vagrant.configure(2) do |config|
12 config.vm.synced_folder ".", "/vagrant", disabled: true
13 (1..3).each do |i|
Sergio Slobodriand24189e2017-06-10 23:27:15 -040014 config.vm.define "#{settings['server_name']}#{i}" do |d|
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040015 d.ssh.forward_agent = true
Sergio Slobodriand24189e2017-06-10 23:27:15 -040016 d.vm.box = settings["box_source"]
17 d.vm.hostname = "#{settings['server_name']}#{i}"
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040018 d.vm.provider "libvirt" do |v|
19 v.memory = 6144
20 end
21 end
22 end
23
24 if Vagrant.has_plugin?("vagrant-cachier")
25 config.cache.scope = :box
26 end
27
28end