Install private jenkins for CD jobs
[icn.git] / Vagrantfile
diff --git a/Vagrantfile b/Vagrantfile
new file mode 100644 (file)
index 0000000..6cde8df
--- /dev/null
@@ -0,0 +1,14 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+Vagrant.configure("2") do |config|
+  config.vm.box = "generic/ubuntu1804"
+  config.vm.hostname = "ubuntu18"
+  config.vm.synced_folder ".", "/vagrant"
+  config.vm.provider :libvirt do |libvirt|
+    libvirt.graphics_ip = '0.0.0.0'
+    libvirt.cpus = 16
+    libvirt.memory = 32768
+    libvirt.machine_virtual_size = 400
+  end
+end