summaryrefslogtreecommitdiff
path: root/spec/one_node/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'spec/one_node/Vagrantfile')
-rw-r--r--spec/one_node/Vagrantfile28
1 files changed, 28 insertions, 0 deletions
diff --git a/spec/one_node/Vagrantfile b/spec/one_node/Vagrantfile
new file mode 100644
index 0000000..03b9ff7
--- /dev/null
+++ b/spec/one_node/Vagrantfile
@@ -0,0 +1,28 @@
+require 'yaml'
+
+configs = YAML.load_file("config.yaml")
+
+Vagrant.configure("2") do |config|
+ config.vm.provider :libvirt do |libvirt|
+ libvirt.cpu_mode = 'host-passthrough'
+ end
+ configs.keys.each do |host|
+ config.vm.define host.to_sym do |c|
+ c.vm.box = "higebu/vyos"
+ c.vm.synced_folder "./", "/vagrant",
+ :owner => "vagrant",
+ :group => "vyattacfg",
+ :mount_options => ["dmode=775,fmode=775"]
+ c.vm.hostname = host
+ if !configs[host].nil? and configs[host].has_key? :networks
+ configs[host][:networks].keys.each do |net|
+ c.vm.network :private_network,
+ :ip => configs[host][:networks][net],
+ :libvirt__network_name => net,
+ :libvirt__dhcp_enabled => false
+ end
+ end
+ c.vm.provision "shell", path: "#{host}_script.sh"
+ end
+ end
+end