Add scripts to setup ONAP on OpenStack 73/50773/5
authorHarry Huang <huangxiangyu5@huawei.com>
Thu, 18 Jan 2018 12:43:47 +0000 (20:43 +0800)
committerHarry Huang <huangxiangyu5@huawei.com>
Wed, 7 Mar 2018 07:42:08 +0000 (15:42 +0800)
commit3e75ab6f1480659d6e12ddbfe3ae86fe2622d6d8
tree2d5a17c1e73ba7def1f72c55a644b17cec80e90a
parent3d636def30cd293231e84a7f2ecf7db2dfad334d
Add scripts to setup ONAP on OpenStack

JIRA: Auto-5

Setup ONAP environment on OpenStack. Develop Using
Python considering its proved performence within
OPNFV testing project, and with its rich library we
can operate REST calls and json parsing in a more
elegant way, also others can reuse the existing
module to develop use cases and test cases.

Main workflow:
1. prepare OpenStack to launch ONAP (images, security
rules, keypair, etc)
2. launch ONAP stack

Change-Id: Id99affccbcaa86be134a535f89b26c54ad137e21
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
14 files changed:
.gitignore [new file with mode: 0644]
README.md [new file with mode: 0644]
auto/__init__.py [new file with mode: 0644]
auto/util/__init__.py [new file with mode: 0644]
auto/util/openstack_lib.py [new file with mode: 0644]
auto/util/util.py [new file with mode: 0644]
auto/util/yaml_type.py [new file with mode: 0644]
prepare.sh [new file with mode: 0755]
requirements.txt [new file with mode: 0644]
setup.py [new file with mode: 0644]
setup/onap_on_openstack/__init__.py [new file with mode: 0644]
setup/onap_on_openstack/config.yml [new file with mode: 0644]
setup/onap_on_openstack/launch_onap.py [new file with mode: 0644]
setup/onap_on_openstack/onap_os_builder.py [new file with mode: 0644]