diff options
author | weinstock, alan <aw2574@att.com> | 2019-04-11 17:35:32 +0000 |
---|---|---|
committer | stark, steven <steven.stark@att.com> | 2019-04-11 11:18:43 -0700 |
commit | a0c6ca75f1ce52556a89ae21d8491c64107af636 (patch) | |
tree | e5094cbf31998bf4750ad916a92b58ba73f1d002 /docs/Chapter5/Heat/ONAP Heat Networking.rst | |
parent | c0ff2f4edd2c2c0af660df6cfed83b20059ce452 (diff) |
[VNFRQTS] updated 4 requirements & fixed typo
Issue-ID: VNFRQTS-623
Change-Id: Ia29a35f206f194a1e66350e598c66fa6e51a2689
Signed-off-by: weinstock, alan <aw2574@att.com>
Signed-off-by: stark, steven <steven.stark@att.com>
Diffstat (limited to 'docs/Chapter5/Heat/ONAP Heat Networking.rst')
-rw-r--r-- | docs/Chapter5/Heat/ONAP Heat Networking.rst | 61 |
1 files changed, 41 insertions, 20 deletions
diff --git a/docs/Chapter5/Heat/ONAP Heat Networking.rst b/docs/Chapter5/Heat/ONAP Heat Networking.rst index d838049..09a2244 100644 --- a/docs/Chapter5/Heat/ONAP Heat Networking.rst +++ b/docs/Chapter5/Heat/ONAP Heat Networking.rst @@ -96,22 +96,15 @@ or an external gateway or router :target: VNF :keyword: MUST :validation_mode: static - :updated: casablanca + :updated: dublin If a VNF has an internal network, the VNF Heat Orchestration Template **MUST** include the heat resources to create the internal network. -.. req:: - :id: R-86972 - :target: VNF - :keyword: SHOULD - :updated: casablanca - - A VNF **SHOULD** create the internal network in the VNF's Heat - Orchestration Template Base Module. - -An Internal Network may be created using Neutron Heat Resources and/or -Contrail Heat Resources. + A VNF's Internal Network is created using Neutron Heat Resources + (i.e., ``OS::Neutron::Net``, ``OS::Neutron::Subnet``) and/or + Contrail Heat Resources (i.e., ``OS::ContrailV2::VirtualNetwork``, + ``ContrailV2::NetworkIpam``). .. req:: @@ -147,18 +140,46 @@ Contrail Heat Resources. A VNF's internal network **MAY** have more than one subnet. .. req:: + :id: R-86972 + :target: VNF + :keyword: SHOULD + :updated: casablanca + + A VNF **SHOULD** create the internal network in the VNF's Heat + Orchestration Template Base Module. + + +.. req:: :id: R-22688 :target: VNF :keyword: MUST :validation_mode: static - :updated: casablanca - - If a VNF's port is connected to an internal network and the port is - created in an Incremental Module and the internal network is created - in the Base Module then the UUID of the internal network **MUST** be - exposed as a parameter in the ``outputs:`` section of the Base Module - and the port resource **MUST** use a ``get_param`` to obtain the network - UUID. + :updated: dublin + + When a VNF's Heat Orchestration Template creates an internal network + (per the ONAP definition, see Requirements R-52425 and R-46461 + and R-35666) and the internal network needs to be shared between modules + within a VNF, the internal network **MUST** be created either in the + + * the base module + * a nested YAML file invoked by the base module + + and the base module **MUST** contain an output parameter that provides + either the network UUID or network name. + + * If the network UUID value is used to reference the network, the output + parameter name in the base module **MUST** follow the naming convention + ``int_{network-role}_net_id`` + * If the network name in is used to reference the network, the output + parameter name in the base template **MUST** follow the naming convention + ``int_{network-role}_net_name`` + + ``{network-role}`` **MUST** be the network-role of the internal network + created in the Base Module. + + ``The Base Module Output Parameter MUST be declared in the ``parameters:`` + section of the Incremental Module(s) where the ``OS::Neutron::Port`` + resource(s) is attaching to the internal network. ONAP does not programmatically enforce a naming convention for parameters for internal network. However, a naming convention is |