diff options
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2020-01-29 17:07:13 +0100 |
---|---|---|
committer | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2020-01-29 17:12:32 +0100 |
commit | 4dcf613b478f0da564bc4a4d09bffe62b690096c (patch) | |
tree | 0bf7adea6cfd0ed074423dd8fd20aa608cb194d9 /bootstrap/vagrant-minimal-onap/README.rst | |
parent | 33649808cab93a4f60474b9381d67e5ac0559858 (diff) |
Add minimal Vagrant environment actual quickstart documentation
Issue-ID: ONAPARC-551
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Change-Id: I0e308d4486dfaa51e54bf69f79b85243766c397a
Diffstat (limited to 'bootstrap/vagrant-minimal-onap/README.rst')
-rw-r--r-- | bootstrap/vagrant-minimal-onap/README.rst | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/bootstrap/vagrant-minimal-onap/README.rst b/bootstrap/vagrant-minimal-onap/README.rst index 370c37db9..40957f752 100644 --- a/bootstrap/vagrant-minimal-onap/README.rst +++ b/bootstrap/vagrant-minimal-onap/README.rst @@ -23,6 +23,30 @@ NOTE: the Devstack instance is NOT SECURED, with default credentials: +-------+----------------+ +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 ------------ |