diff options
author | Justin chi <chigang@huawei.com> | 2016-11-15 03:19:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-11-15 03:19:18 +0000 |
commit | a099404ead9151b529de1e1e960cac6e67937ad0 (patch) | |
tree | 7942c55cdd3637d6cf05a7948776831cc091c671 /docs/installationprocedure/offline-deploy.rst | |
parent | 47adb40212f2441ca03608d537538d2a69018a5c (diff) | |
parent | 49df34a840a4cbbe9c7319d348d7d8dbceaf75c1 (diff) |
Merge "DOC: offline-deploy.rst"
Diffstat (limited to 'docs/installationprocedure/offline-deploy.rst')
-rw-r--r-- | docs/installationprocedure/offline-deploy.rst | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/docs/installationprocedure/offline-deploy.rst b/docs/installationprocedure/offline-deploy.rst new file mode 100644 index 00000000..68c78a0b --- /dev/null +++ b/docs/installationprocedure/offline-deploy.rst @@ -0,0 +1,47 @@ +.. two dots create a comment. please leave this logo at the top of each of your rst files. + +Offline Deploy +============== + +Compass4nfv uses offline approuch to deploy cluster and support complete offline +deployment on a jumphost without access internet. Here is the offline deployment +instuction: + +Preparation for offline deploy +------------------------------ + +1. Download compass.iso from OPNFV artifacts repository (Search compass4nfv in + http://artifacts.opnfv.org/ and download an appropriate ISO. ISO can also be + generated by script build.sh in compass4nfv root directory.) + +2. Download the Jumphost preparation package from our httpserver. (Download the + jumphost environment package from `here <http://205.177.226.237:9999/jh_env_package.tar.gz>`_. + It should be awared that currently we only support ubuntu trusty as offline + jumphost OS.) + +3. Clone the compass4nfv code repository. + +Steps of offline deploy +----------------------- + +1. Copy the compass.iso, jh_env_package.tar.gz and the compass4nfv code + repository to your jumphost. + +2. Export the local path of the compass.iso and jh_env_package.tar.gz on + jumphost. Then you can perform deployment on a offline jumphost. + +E.g. + +Export the compass4nfv.iso and jh_env_package.tar.gz path + +.. code-block:: bash + + # ISO_URL and JHPKG_URL should be absolute path + export ISO_URL=file:///home/compass/compass4nfv.iso + export JHPKG_URL=file:///home/compass/jh_env_package.tar.gz + +Run deploy.sh + +.. code-block:: bash + + ./deploy.sh |