diff options
author | yangyan <yangyanyj@chinamobile.com> | 2017-11-01 12:20:49 +0800 |
---|---|---|
committer | yangyan <yangyanyj@chinamobile.com> | 2017-11-01 12:21:27 +0800 |
commit | ad8793f9b4a4de8fe8aa37c80d6746403631528f (patch) | |
tree | c830abb339bb9231a64e3f0c3c5ed6b82171e68f /docs/installation.rst | |
parent | 8ef8e0696d5e9598012363f780d722f90e9d06e2 (diff) |
Update VF-C doc
Add VF-C release note
Update VF-C component installation document
Issue-ID: VFC-574
Change-Id: I8d422e341d785c8d817e53ad5a24412e50933a64
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'docs/installation.rst')
-rw-r--r-- | docs/installation.rst | 175 |
1 files changed, 0 insertions, 175 deletions
diff --git a/docs/installation.rst b/docs/installation.rst deleted file mode 100644 index 0d361716..00000000 --- a/docs/installation.rst +++ /dev/null @@ -1,175 +0,0 @@ -.. This work is licensed under a Creative Commons Attribution 4.0 International License. -.. http://creativecommons.org/licenses/by/4.0 - -VF-C Installation ------------------ -Describe the environment and steps to install VF-C components. - - -Environment -+++++++++++ -VF-C components can run as docker, docker service should be installed before install VF-C components. - -The following scripts show the docker service install commands in centos7. - -:: - - yum install docker - systemctl enable docker.service - systemctl start docker.service - -Steps -+++++ - -- Install MSB components. - -VF-C components need to register to MSB when starting, so MSB components should be installed first, you can ref the following link to install MSB. - -http://onap.readthedocs.io/en/latest/submodules/msb/apigateway.git/docs/platform/installation.html - -Note: In the following steps, we use ${MSB_IP} as the IP of msb_apigateway component. - -- Install vfc-nfvo-lcm component. - -:: - - docker run -d --name vfc-nslcm -v /var/lib/mysql -p 8403:8403 -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/nslcm - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/nslcm/v1/swagger.json - -- Install vfc-nfvo-wfengine components. - -Totally, there are two docker images should be installed before you can use the workflow normally, \ -one is wfengine-activiti for manage the original activiti service, the other is for manage engine service. - - -1. Pull related docker images - -:: - - docker pull $NEXUS_DOCKER_REPO/onap/vfc/wfengine-activiti:$DOCKER_IMAGE_VERSION - docker pull $NEXUS_DOCKER_REPO/onap/vfc/wfengine-mgrservice:$DOCKER_IMAGE_VERSION - -2. Run the two docker images - -The first container is wfengine-activiti,there are some parameters should be injected into container. \ -OPENPALETTE_MSB_IP represents msb server address and OPENPALETTE_MSB_PORT is the relative port, \ -SERVICE_IP represents the docker run environment server address. - -:: - - docker run -i -t -d --name vfc_wfengine_activiti -p 8804:8080 -e SERVICE_IP=$OPENO_IP -e SERVICE_PORT=8804 - -e OPENPALETTE_MSB_IP=$OPENO_IP -e OPENPALETTE_MSB_PORT=80 $NEXUS_DOCKER_REPO/onap/vfc/wfengine-activiti:$DOCKER_IMAGE_VERSION - - docker run -i -t -d --name vfc_wfengine_mgrservice -p 8805:10550 -e SERVICE_IP=$OPENO_IP -e SERVICE_PORT=8805 - -e OPENPALETTE_MSB_IP=$OPENO_IP -e OPENPALETTE_MSB_PORT=80 $NEXUS_DOCKER_REPO/onap/vfc/wfengine-mgrservice:$DOCKER_IMAGE_VERSION - -- Install vfc-nfvo-catalog component. - -:: - - docker run -d --name vfc-catalog -v /var/lib/mysql -p 8806:8806 -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/catalog - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/catalog/v1/swagger.json - -- Install vfc-nfvo-resmanagement component. - -:: - - docker run -d --name vfc-resmanagement -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/resmanagement - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/resmgr/v1/swagger.json - -- Install vfc-nfvo-resmanagement component. - -:: - - docker run -d --name vfc-resmanagement -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/resmanagement - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/resmgr/v1/swagger.json - -- Install vfc-nfvo-sfcdriver component. - -:: - - docker run -d --name vfc-ztesdncdriver -p 8411:8411 -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/ztesdncdriver - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/ztesdncdriver/v1/swagger - -- Install vfc-nfvo-emsdriver component. - -:: - - docker run -d --name vfc-emsdriver -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/emsdriver - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/emsdriver/v1/swagger.json - -- Install vfc-gvnfm components. - -:: - - docker run -d --name vfc-vnflcm -v /var/lib/mysql -p 8801:8801 -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/vnflcm - docker run -d --name vfc-vnfmgr -v /var/lib/mysql -p 8803:8803 -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/vnfmgr - docker run -d --name vfc-vnfres -v /var/lib/mysql -p 8802:8802 -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/vnfres - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/vnflcm/v1/swagger.json - curl http://${MSB_IP}:80/api/vnfmgr/v1/swagger.json - curl http://${MSB_IP}:80/api/vnfres/v1/swagger.json - -- Install vfc-gvnfmdriver components. - -:: - - docker run -d --name vfc-gvnfmdriver -p 8484:8484 -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/gvnfmdriver - docker run -d --name vfc-jujudriver -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/jujudriver - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/gvnfmdriver/v1/swagger.json - curl http://${MSB_IP}:80/openoapi/jujuvnfm/v1/swagger.json - -- Install vfc-svnfmdriver components. - -:: - - docker run -d --name vfc-ztevmanagerdriver -p 8410:8410 -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/ztevmanagerdriver - docker run -d --name vfc-svnfm-huawei -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/nfvo/svnfm/huawei - docker run -d --name vfc-svnfm-nokia -e MSB_ADDR=${MSB_IP}:80 nexus3.onap.org:10001/onap/vfc/nfvo/svnfm/nokia - -For testing, we can use curl command to access the swagger api. - -:: - - curl http://${MSB_IP}:80/api/ztevmanagerdriver/v1/swagger.json - curl http://${MSB_IP}:80/api/hwvnfm/v1/swagger.json - curl http://${MSB_IP}:80/api/nokiavnfmdriver/v1/swagger.json |