Take trap statement inside the if clause
[domino.git] / docs / configguide / installation.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. http://creativecommons.org/licenses/by/4.0
3
4 .. image:: ../etc/opnfv-logo.png
5   :height: 40
6   :width: 200
7   :alt: OPNFV
8   :align: left
9 .. these two pipes are to seperate the logo from the first title
10 |
11 |
12 Domino Installation
13 ===================
14
15 Note: The steps below are tested for Ubuntu (16.04, 14.04) and OS X El Capitan.
16
17 Prerequisites
18 -------------
19 * git
20 * python-pip
21 * python (version =2.7)
22 * tosca-parser (version >=0.4.0)
23 * heat-translator (version >=0.5.0)
24
25 Installation Steps (Single Node)
26 --------------------------------
27
28 * Step-0: Prepare Environment
29
30 .. code-block:: bash
31
32   > $sudo pip install tosca-parser
33   > $sudo pip install heat-translator
34   > $sudo pip install requests
35
36 * Step-1: Get the Domino code
37
38 .. code-block:: bash
39
40   > $git clone https://gerrit.opnfv.org/gerrit/domino
41
42 * Step-2: Go to the main domino directory
43
44 .. code-block:: bash
45
46   > $cd domino
47
48 You should see DominoClient.py, DominoServer.py, and domino-cli.py as executibles.
49
50 Installation Steps (Multiple Node)
51 ----------------------------------
52
53 Repeat the installation steps for single node on each of the nodes. The script
54 run_multinode.sh under ./domino/tests directory deploys the Domino Code on three
55 hosts from a deployment node and tests RPC calls.