aboutsummaryrefslogtreecommitdiffstats
path: root/kud/hosting_providers/containerized/testing
diff options
context:
space:
mode:
authorKuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>2020-05-11 06:44:12 +0000
committerKuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>2020-05-11 06:44:12 +0000
commit8e0c00c4c59add2fa03a67081d74cd46934d034e (patch)
treecaf91b2e77b9f33b86aefcad31d2626a8748754f /kud/hosting_providers/containerized/testing
parent1449bbe36e44315fa6e74375e7ab0607dd182344 (diff)
Fixing README.md for containerization installation
Issue-ID: MULTICLOUD-1068 Signed-off-by: Kuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com> Change-Id: I8ced72f4d9f13b9cb2305fc3778cdd65e933d778
Diffstat (limited to 'kud/hosting_providers/containerized/testing')
-rw-r--r--kud/hosting_providers/containerized/testing/Vagrantfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/kud/hosting_providers/containerized/testing/Vagrantfile b/kud/hosting_providers/containerized/testing/Vagrantfile
new file mode 100644
index 00000000..547d3084
--- /dev/null
+++ b/kud/hosting_providers/containerized/testing/Vagrantfile
@@ -0,0 +1,16 @@
+# -*- 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'
+ # add random suffix to allow running multiple jobs
+ libvirt.random_hostname = 'yes'
+ libvirt.cpus = 16
+ libvirt.memory = 32768
+ libvirt.machine_virtual_size = 400
+ end
+end