diff options
author | Ulas Kozat <ulas.kozat@gmail.com> | 2016-07-14 14:57:27 -0700 |
---|---|---|
committer | Ulas Kozat <ulas.kozat@gmail.com> | 2016-07-14 16:08:26 -0700 |
commit | b7e6105be27b5d386bd7b81c9f6554f4d6a812bf (patch) | |
tree | d9a008a8e597c95134357a187961f24599764249 | |
parent | f75110ac6abc965caea8a8c147141ec41ec8fa36 (diff) |
Update userguide
Change-Id: I3c816a7a1770c0fae8d8000a4d24e2516e94978a
Signed-off-by: Ulas Kozat <ulas.kozat@gmail.com>
-rw-r--r-- | docs/userguide/index.rst | 8 | ||||
-rw-r--r-- | docs/userguide/overview.rst | 28 | ||||
-rwxr-xr-x | tests/run_multinode.sh | 6 |
3 files changed, 37 insertions, 5 deletions
diff --git a/docs/userguide/index.rst b/docs/userguide/index.rst index aaa8f97..71f66c4 100644 --- a/docs/userguide/index.rst +++ b/docs/userguide/index.rst @@ -6,9 +6,10 @@ :width: 200 :alt: OPNFV :align: left - -DOMINO API DOCUMENTATION -======================== +| +| +Domino User Guide +================= Contents: @@ -16,6 +17,7 @@ Contents: :numbered: :maxdepth: 4 + overview.rst api-documentation.rst Indices and tables diff --git a/docs/userguide/overview.rst b/docs/userguide/overview.rst new file mode 100644 index 0000000..5941252 --- /dev/null +++ b/docs/userguide/overview.rst @@ -0,0 +1,28 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International License. +.. http://creativecommons.org/licenses/by/4.0 + +.. image:: ../etc/opnfv-logo.png + :height: 40 + :width: 200 + :alt: OPNFV + :align: left +.. these two pipes are to seperate the logo from the first title +| +| +Domino Overview +=============== +Domino provides a distribution service for Network Service (NS) and Virtual +Network Function (VNF) descriptors. It is targeted towards supporting many +network controllers, service orchestrators, VNF managers, Operation and +Business Support Systems. Producers of Network Service Descriptors (NSDs) +and VNF Descriptors (VNFD) use Domino Service as an entry point to publish +these descriptors. Currently Domino only supports Tosca Simple Profile for +Network Functions Virtualization (http://docs.oasis-open.org/tosca/tosca-nfv/v1.0/tosca-nfv-v1.0.html) as the data model for NSDs and VNFDs. + +Orchestrators, controllers, and managers use Domino service to announce their +capabilities in the form of policy labels. For instance a Virtual Infrastructure +Manager (VIM) that is capable of performing an affinity based VNF or VDU +placement at host machine granularity can specify a label in the form "tosca.policies.Placement.affinity:properties:granularity:hostlevel". When the VIM registers +with Domino Service and subscribed for that label, Domino views this VIM as a +candidate location that can host a VNF or VDU requesting affinity based placement +policy at host machine granularity. diff --git a/tests/run_multinode.sh b/tests/run_multinode.sh index fc2d394..26e7d98 100755 --- a/tests/run_multinode.sh +++ b/tests/run_multinode.sh @@ -12,8 +12,10 @@ # limitations under the License. USERNAME=ubuntu -SSH_KEY_PATH=/home/opnfv/repos/domino/tests/testkeys/id_rsa -DOMINO_CODE_PATH=/home/opnfv/repos/domino +#SSH_KEY_PATH=/home/opnfv/repos/domino/tests/testkeys/id_rsa +#DOMINO_CODE_PATH=/home/opnfv/repos/domino +SSH_KEY_PATH=./tests/testkeys/id_rsa +DOMINO_CODE_PATH=../domino CONTROLLER_NODE_1=192.168.2.165 CONTROLLER_NODE_2=192.168.2.180 CONTROLLER_NODE_3=192.168.2.181 |