Add minimal Vagrant environment actual quickstart documentation
Issue-ID: ONAPARC-551
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Change-Id: I0e308d4486dfaa51e54bf69f79b85243766c397a
diff --git a/bootstrap/vagrant-minimal-onap/README.rst b/bootstrap/vagrant-minimal-onap/README.rst
index 370c37d..40957f7 100644
--- a/bootstrap/vagrant-minimal-onap/README.rst
+++ b/bootstrap/vagrant-minimal-onap/README.rst
@@ -23,6 +23,30 @@
+-------+----------------+
+Quickstart
+----------
+
+Following set of commands can be used to prepare a machine running Ubuntu 18.04 for this setup:
+
+.. code-block:: sh
+ sudo sed -i'.bak' 's/^#.*deb-src/deb-src/' /etc/apt/sources.list
+ sudo apt-get update
+ sudo apt-get build-dep vagrant ruby-libvirt
+ sudo apt-get install qemu libvirt-bin ebtables dnsmasq-base
+ sudo apt-get install libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev
+
+ sudo apt-get install sshfs
+
+ wget https://releases.hashicorp.com/vagrant/2.2.7/vagrant_2.2.7_x86_64.deb
+ sudo dpkg -i vagrant_2.2.7_x86_64.deb
+
+ vagrant plugin install vagrant-libvirt
+ vagrant plugin install vagrant-sshfs
+
+ sudo mv /etc/apt/sources.list{.bak,}
+ rm vagrant_2.2.7_x86_64.deb
+
+
Requirements
------------