diff options
author | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2016-08-08 18:17:55 +0200 |
---|---|---|
committer | Nikolas Hermanns <nikolas.hermanns@ericsson.com> | 2016-08-09 14:23:50 +0200 |
commit | cd8f226ea6aa01432b003e6bbcfb314950445e4f (patch) | |
tree | 9affbaaa360a689dc26743e3ecb2b1f06d260683 /docs/installationprocedure/os-odl_l2-bgpvpn/preparation.rst | |
parent | cf3dfbdea81f5bd444db0853681da6c52c20b2a6 (diff) |
[DOC] Automatic Installation
Change-Id: I067046949d9cd4a764c279c053a2f54b30645fda
Signed-off-by: Nikolas Hermanns <nikolas.hermanns@ericsson.com>
Diffstat (limited to 'docs/installationprocedure/os-odl_l2-bgpvpn/preparation.rst')
-rw-r--r-- | docs/installationprocedure/os-odl_l2-bgpvpn/preparation.rst | 42 |
1 files changed, 38 insertions, 4 deletions
diff --git a/docs/installationprocedure/os-odl_l2-bgpvpn/preparation.rst b/docs/installationprocedure/os-odl_l2-bgpvpn/preparation.rst index f0510cf..9fc26d3 100644 --- a/docs/installationprocedure/os-odl_l2-bgpvpn/preparation.rst +++ b/docs/installationprocedure/os-odl_l2-bgpvpn/preparation.rst @@ -10,11 +10,45 @@ Preparing your host to install Fuel by script Before starting the installation of the <scenario> scenario some preparation of the machine that will host the Fuel VM must be done. +Installation of required packages +--------------------------------- +To be able to run the installation of the basic opnfv fuel installation the +Jumphost (or the host which serves the VMs for the virtual deployment) needs to +install the following packages: +:: -Setting up the host -------------------- + sudo apt-get install -y git make curl libvirt-bin libpq-dev qemu-kvm \ + qemu-system tightvncserver virt-manager sshpass \ + fuseiso genisoimage blackbox xterm python-pip \ + python-git python-dev python-oslo.config \ + python-pip python-dev libffi-dev libxml2-dev \ + libxslt1-dev libffi-dev libxml2-dev libxslt1-dev \ + expect curl python-netaddr p7zip-full + sudo pip install GitPython pyyaml netaddr paramiko lxml scp \ + python-novaclient python-neutronclient python-glanceclient \ + python-keystoneclient debtcollector netifaces enum -Installation of required packages ---------------------------------- +Download the source code and artifact +------------------------------------- +To be able to install the scenario os-odl_l2-bgpvpn one can follow the way +CI is deploying the scenario. +First of all the opnfv-fuel repo needs to be cloned: +:: + + git clone ssh://<user>@gerrit.opnfv.org:29418/fuel + +This command downloads the whole repo fuel. We need now to switch it to +the stable Brahmaputra branch: +:: + + cd fuel + git checkout stable/brahmaputra + +Now download the appropriate OPNFV Fuel ISO into an appropriate folder: +:: + + wget http://artifacts.opnfv.org/fuel/brahmaputra/opnfv-brahmaputra.3.0.iso +The ISO version may change. +Check https://www.opnfv.org/opnfv-brahmaputra-fuel-users to get the latest ISO. |