diff options
author | Bin Hu <bh526r@att.com> | 2015-12-23 12:40:28 -0800 |
---|---|---|
committer | Bin Hu <bh526r@att.com> | 2015-12-23 12:40:28 -0800 |
commit | 3ca1ca814d354198ee3a5e73f26e01e5bbeaa20c (patch) | |
tree | b8f46ee4356be64da210c3bd502ca4e1270c39ad /docs/setupservicevm/2-ipv6-configguide-os-controller.rst | |
parent | 8b4e55547d807f21898081cc70361bf1aebce16a (diff) |
JIRA: IPVSIX-29
Change-Id: Ie47c45d5ffbfac889ce15ac8fe612498a3f69443
Signed-off-by: Bin Hu <bh526r@att.com>
Diffstat (limited to 'docs/setupservicevm/2-ipv6-configguide-os-controller.rst')
-rw-r--r-- | docs/setupservicevm/2-ipv6-configguide-os-controller.rst | 54 |
1 files changed, 34 insertions, 20 deletions
diff --git a/docs/setupservicevm/2-ipv6-configguide-os-controller.rst b/docs/setupservicevm/2-ipv6-configguide-os-controller.rst index f748f0b..b0dd63b 100644 --- a/docs/setupservicevm/2-ipv6-configguide-os-controller.rst +++ b/docs/setupservicevm/2-ipv6-configguide-os-controller.rst @@ -20,15 +20,21 @@ For exemplary purpose, we assume: **OS-N-3**: Download devstack and switch to stable/kilo branch - ``git clone https://github.com/openstack-dev/devstack.git -b stable/kilo`` +.. code-block:: bash + + git clone https://github.com/openstack-dev/devstack.git -b stable/kilo **OS-N-4**: Start a new terminal, and change directory to where OpenStack is installed. - ``cd ~/devstack`` +.. code-block:: bash + + cd ~/devstack **OS-N-5**: Create a ``local.conf`` file with the contents from the following URL. - ``http://fpaste.org/276949/39476214/`` +.. code-block:: bash + + http://fpaste.org/276949/39476214/ Please note: @@ -39,17 +45,21 @@ Please note: **OS-N-6**: Initiate Openstack setup by invoking ``stack.sh`` - ``./stack.sh`` +.. code-block:: bash + + ./stack.sh **OS-N-7**: If the setup is successful you would see the following logs on the console. Please note that the IP addresses are all for the purpose of example. Your IP addresses will match the ones of your actual network interfaces. - ``This is your host ip: <opnfv-os-controller IP address>`` -| ``Horizon is now available at http://<opnfv-os-controller IP address>/`` -| ``Keystone is serving at http://<opnfv-os-controller IP address>:5000/`` -| ``The default users are: admin and demo`` -| ``The password: password`` +.. code-block:: bash + + This is your host ip: <opnfv-os-controller IP address> + Horizon is now available at http://<opnfv-os-controller IP address>/ + Keystone is serving at http://<opnfv-os-controller IP address>:5000/ + The default users are: admin and demo + The password: password **OS-N-8**: Assuming that all goes well, you can set ``OFFLINE=True`` and ``RECLONE=no`` in ``local.conf`` to lock the codebase. Devstack uses these configuration parameters to determine if it has to run with @@ -57,19 +67,23 @@ the existing codebase or update to the latest copy. **OS-N-9**: Source the credentials. - ``opnfv@opnfv-os-controller:~/devstack$ source openrc admin demo`` +.. code-block:: bash + + opnfv@opnfv-os-controller:~/devstack$ source openrc admin demo **OS-N-10**: Verify some commands to check if setup is working fine. - ``opnfv@opnfv-os-controller:~/devstack$ nova flavor-list`` -| +----+-----------+-----------+------+-----------+------+-------+-------------+-----------+ -| | ID | Name | Memory_MB | Disk | Ephemeral | Swap | VCPUs | RXTX_Factor | Is_Public | -| +----+-----------+-----------+------+-----------+------+-------+-------------+-----------+ -| | 1 | m1.tiny | 512 | 1 | 0 | | 1 | 1.0 | True | -| | 2 | m1.small | 2048 | 20 | 0 | | 1 | 1.0 | True | -| | 3 | m1.medium | 4096 | 40 | 0 | | 2 | 1.0 | True | -| | 4 | m1.large | 8192 | 80 | 0 | | 4 | 1.0 | True | -| | 5 | m1.xlarge | 16384 | 160 | 0 | | 8 | 1.0 | True | -| +----+-----------+-----------+------+-----------+------+-------+-------------+-----------+ +.. code-block:: bash + + opnfv@opnfv-os-controller:~/devstack$ nova flavor-list + +----+-----------+-----------+------+-----------+------+-------+-------------+-----------+ + | ID | Name | Memory_MB | Disk | Ephemeral | Swap | VCPUs | RXTX_Factor | Is_Public | + +----+-----------+-----------+------+-----------+------+-------+-------------+-----------+ + | 1 | m1.tiny | 512 | 1 | 0 | | 1 | 1.0 | True | + | 2 | m1.small | 2048 | 20 | 0 | | 1 | 1.0 | True | + | 3 | m1.medium | 4096 | 40 | 0 | | 2 | 1.0 | True | + | 4 | m1.large | 8192 | 80 | 0 | | 4 | 1.0 | True | + | 5 | m1.xlarge | 16384 | 160 | 0 | | 8 | 1.0 | True | + +----+-----------+-----------+------+-----------+------+-------+-------------+-----------+ Now you can start the Compute node setup. |