diff options
author | zhipengh <huangzhipeng@huawei.com> | 2016-09-20 21:18:05 +0800 |
---|---|---|
committer | Zhipeng (Howard) Huang <huangzhipeng@huawei.com> | 2016-09-20 13:52:12 +0000 |
commit | 5569db9a314d9dd4b2bb9f5c2a67dc6ddb63a5a0 (patch) | |
tree | 1f06944d6833fcf32c82823a59ff568540f40936 /docs/installationprocedure | |
parent | fa0b830566779c9cafa2ce6b3de28a176e91218c (diff) |
Parser Release C RC1 docs final clean upcolorado.1.0stable/colorado
Change-Id: Ib74e8cbaaa6397e9f9f1e9eba35d7d2f8e8d5108
Signed-off-by: zhipengh <huangzhipeng@huawei.com>
(cherry picked from commit c5df8adbaf4eaa0005c372b242652cc6542df7c6)
Diffstat (limited to 'docs/installationprocedure')
-rw-r--r-- | docs/installationprocedure/index.rst | 14 | ||||
-rw-r--r-- | docs/installationprocedure/installerconfig.rst | 54 |
2 files changed, 64 insertions, 4 deletions
diff --git a/docs/installationprocedure/index.rst b/docs/installationprocedure/index.rst index 13def7e..1eb7461 100644 --- a/docs/installationprocedure/index.rst +++ b/docs/installationprocedure/index.rst @@ -6,9 +6,21 @@ ******************************************** Parser Configuration and Configuration Guide ******************************************** +Parser is an open source project and licensed under Apache 2. Parser will help +to provide a tooling mechanism, by parsing and then further translating Telecom +operators deployment descriptors into certain common templates, which could be +used in IaaS orchestration projects like OpenStack Heat(the template file is HOT, +which stands for Heat Orchestrator Template). + +This document contains configuration guide for Parser's three submodules: tosca2heat, +yang2tosca and policy2tosca. Users please refer to user guide for installation and execution +which usually happens after configuration. + + .. toctree:: :numbered: :maxdepth: 2 - feature.configuration.rst +.. include:: featureconfig.rst +.. include:: installerconfig.rst diff --git a/docs/installationprocedure/installerconfig.rst b/docs/installationprocedure/installerconfig.rst index efe6265..1f796b2 100644 --- a/docs/installationprocedure/installerconfig.rst +++ b/docs/installationprocedure/installerconfig.rst @@ -2,7 +2,7 @@ .. http://creativecommons.org/licenses/by/4.0 .. (c) <optionally add copywriters name> -Parser configuration +Parser general configuration ===================== Parser can be configured with any installer in current OPNFV. @@ -19,10 +19,58 @@ Jumphost configuration For parser, there is not intial Jumphost configuration (network and software)needed in order to deploy any installer. -Platform components configuration ---------------------------------- + +Parser tosca2heat configuration +===================== For tosca2heat components(tosca-parser and heat-translator) in parser,there are not specific configuration of each component in installer. +Parser yang2tosca configuration +===================== +Parser yang2tosca requires the following to be installed. + +1. PYANG +-------- + +Please follow the below installation steps. + +Step 1: Clone pyang tool or download the zip file from the following link. + +.. code-block:: bash + + git clone https://github.com/mbj4668/pyang.git + +OR + +.. code-block:: bash + + wget https://github.com/mbj4668/pyang/archive/master.zip + +Step 2: Change directory to the downloaded directory and run the setup file. + +.. code-block:: bash + + cd pyang + python setup.py + +2. python-lxml +-------------- + +Please follow the below installation link. http://lxml.de/installation.html + + +Parser policy2tosca configuration +============================ +Parser - POLICY2TOSCA requires the following to be installed. + +1. cliff +-------- + +Install cliff with the following links. +:: +- `install <http://docs.openstack.org/developer/cliff/install.html>` +or +- `demoapp <http://docs.openstack.org/developer/cliff/demoapp.html> + |