From 5ec00e530c5fc851ec69eb5a79eceaad3fd15c3c Mon Sep 17 00:00:00 2001 From: Trinath Somanchi Date: Tue, 24 Apr 2018 12:41:42 -0400 Subject: [Fraser] Docs reorganization and updates to release notes. Change-Id: I0c3882ec916b474bc1ebd10ace7d644a7165209d Signed-off-by: Trinath Somanchi --- docs/development/index.rst | 11 +- docs/release/configguide/configuration-guide.rst | 187 +++++++++++++++++++++++ docs/release/configguide/index.rst | 22 +++ docs/release/configuration-guide.rst | 187 ----------------------- docs/release/index.rst | 21 --- docs/release/release-notes.rst | 109 ------------- docs/release/release-notes/index.rst | 23 +++ docs/release/release-notes/release-notes.rst | 113 ++++++++++++++ docs/scenarios/index.rst | 12 ++ docs/testing/index.rst | 12 +- 10 files changed, 371 insertions(+), 326 deletions(-) create mode 100644 docs/release/configguide/configuration-guide.rst create mode 100644 docs/release/configguide/index.rst delete mode 100644 docs/release/configuration-guide.rst delete mode 100644 docs/release/index.rst delete mode 100644 docs/release/release-notes.rst create mode 100644 docs/release/release-notes/index.rst create mode 100644 docs/release/release-notes/release-notes.rst diff --git a/docs/development/index.rst b/docs/development/index.rst index 5cf12b5..55df481 100644 --- a/docs/development/index.rst +++ b/docs/development/index.rst @@ -1,3 +1,5 @@ +.. _ovn4nfv-developmentguide: + .. This work is licensed under a Creative Commons Attribution 4.0 International .. License. http://creativecommons.org/licenses/by/4.0 @@ -7,10 +9,10 @@ OVN4NFV Development :Project: Ovn4Nfv, https://wiki.opnfv.org/display/PROJ/Ovn4nfv -:Editors: Vikram Dham (Huawei) -:Authors: Vikram Dham (Huawei) - Trinath Somanchi (NXP) - Prakash Ramchandran (Huawei) +:Editors: Trinath Somanchi (NXP India) +:Authors: Prasad Gorja (NXP India) + Trinath Somanchi (NXP India) + Prakash Ramchandran (Dell) :Abstract: This document provides an overview of networking-ovn,its utilization into NFV and outlines OpenStack official release. @@ -20,3 +22,4 @@ OVN4NFV Development openstack-networking-ovn.rst ovn-for-nfv.rst + configuration-guide.rst diff --git a/docs/release/configguide/configuration-guide.rst b/docs/release/configguide/configuration-guide.rst new file mode 100644 index 0000000..12a6243 --- /dev/null +++ b/docs/release/configguide/configuration-guide.rst @@ -0,0 +1,187 @@ +Devstack Configuration +====================== + +Devstack - localrc/local.conf +----------------------------- + +Sample DevStack local.conf. + +.. code-block:: console + + # + # This sample file is intended to be used for your typical DevStack environment + # that's running all of OpenStack on a single host. This can also be used as + # the first host of a multi-host test environment. + # + # No changes to this sample configuration are required for this to work. + # + DATABASE_PASSWORD=password + RABBIT_PASSWORD=password + SERVICE_PASSWORD=password + SERVICE_TOKEN=password + ADMIN_PASSWORD=password + + # The DevStack plugin defaults to using the ovn branch from the official ovs + # repo. You can optionally use a different one. For example, you may want to + # use the latest patches in blp's ovn branch: + #OVN_REPO=https://github.com/blp/ovs-reviews.git + #OVN_BRANCH=ovn + + enable_plugin networking-ovn https://git.openstack.org/openstack/networking-ovn + enable_service ovn-northd + enable_service ovn-controller + enable_service networking-ovn-metadata-agent + + # Use Neutron instead of nova-network + disable_service n-net + enable_service q-svc + + # Disable Neutron agents not used with OVN. + disable_service q-agt + disable_service q-l3 + disable_service q-dhcp + disable_service q-meta + + # Horizon (the web UI) is enabled by default. You may want to disable + # it here to speed up DevStack a bit. + enable_service horizon + #disable_service horizon + + # Cinder (OpenStack Block Storage) is disabled by default to speed up + # DevStack a bit. You may enable it here if you would like to use it. + disable_service cinder c-sch c-api c-vol + #enable_service cinder c-sch c-api c-vol + + # How to connect to ovsdb-server hosting the OVN NB database. + #OVN_NB_REMOTE=tcp:$SERVICE_HOST:6641 + + # How to connect to ovsdb-server hosting the OVN SB database. + #OVN_SB_REMOTE=tcp:$SERVICE_HOST:6642 + + # A UUID to uniquely identify this system. If one is not specified, a random + # one will be generated and saved in the file 'ovn-uuid' for re-use in future + # DevStack runs. + #OVN_UUID= + + # If using the OVN native layer-3 service, choose a router scheduler to + # manage the distribution of router gateways on hypervisors/chassis. + # Default value is leastloaded. + #OVN_L3_SCHEDULER=leastloaded + + # Whether or not to build custom openvswitch kernel modules from the ovs git + # tree. This is enabled by default. This is required unless your distro kernel + # includes ovs+conntrack support. This support was first released in Linux 4.3, + # and will likely be backported by some distros. + #OVN_BUILD_MODULES=False + + # Enable services, these services depend on neutron plugin. + #enable_plugin neutron https://git.openstack.org/openstack/neutron + #enable_service q-qos + #enable_service q-trunk + + # Skydive + #enable_plugin skydive https://github.com/redhat-cip/skydive.git + #enable_service skydive-analyzer + #enable_service skydive-agent + + # If you want to enable a provider network instead of the default private + # network after your DevStack environment installation, you *must* set + # the Q_USE_PROVIDER_NETWORKING to True, and also give FIXED_RANGE, + # NETWORK_GATEWAY and ALLOCATION_POOL option to the correct value that can + # be used in your environment. Specifying Q_AGENT is needed to allow devstack + # to run various "ip link set" and "ovs-vsctl" commands for the provider + # network setup. + #Q_AGENT=openvswitch + #Q_USE_PROVIDER_NETWORKING=True + #PHYSICAL_NETWORK=providernet + #PROVIDER_NETWORK_TYPE=flat + #PUBLIC_INTERFACE= + #OVS_PHYSICAL_BRIDGE=br-provider + #PROVIDER_SUBNET_NAME=provider-subnet + # use the following for IPv4 + #IP_VERSION=4 + #FIXED_RANGE= + #NETWORK_GATEWAY= + #ALLOCATION_POOL= + # use the following for IPv4+IPv6 + #IP_VERSION=4+6 + #FIXED_RANGE= + #NETWORK_GATEWAY= + #ALLOCATION_POOL= + # IPV6_PROVIDER_FIXED_RANGE= + # IPV6_PROVIDER_NETWORK_GATEWAY= + + # If you wish to use the provider network for public access to the cloud, + # set the following + #Q_USE_PROVIDERNET_FOR_PUBLIC=True + #PUBLIC_NETWORK_NAME= + #PUBLIC_NETWORK_GATEWAY= + #PUBLIC_PHYSICAL_NETWORK= + #IP_VERSION=4 + #PUBLIC_SUBNET_NAME= + #Q_FLOATING_ALLOCATION_POOL= + #FLOATING_RANGE= + + # NOTE: DO NOT MOVE THESE SECTIONS FROM THE END OF THIS FILE + # IF YOU DO, THEY WON'T WORK!!!!! + # + + # Enable Nova automatic host discovery for cell every 2 seconds + # Only needed in case of multinode devstack, as otherwise there will be issues + # when the 2nd compute node goes online. + discover_hosts_in_cells_interval=2 + + +Neutron - metadata_agent.ini +-------------------------- + +The following configuration options in /etc/neutron/metadata_agent.ini +are required when OVN is enabled in OpenStack neutron. + +.. code-block:: console + + ... + ... + [ovs] + # + # From networking_ovn.metadata.agent + # + + # The connection string for the native OVSDB backend. + # Use tcp:IP:PORT for TCP connection. + # Use unix:FILE for unix domain socket connection. (string value) + #ovsdb_connection = unix:/usr/local/var/run/openvswitch/db.sock + + # Timeout in seconds for the OVSDB connection transaction (integer value) + #ovsdb_connection_timeout = 180 + + [ovn] + ovn_sb_connection = tcp:: + + +Neutron - neutron.conf +-------------------- + +The following configuration changes are required in /etc/neutron/neutron.conf + +.. code-block:: console + + [DEFAULT] + service_plugins = networking_ovn.l3.l3_ovn.OVNL3RouterPlugin + +Neutron - ml2_conf.ini +-------------------- + +The following configuration changes are required in /etc/neutron/plugins/ml2/ml2_conf.ini + +.. code-block:: console + + [ml2] + mechanism_drivers = ovn,logger + + [ovn] + ovn_metadata_enabled = True + ovn_l3_scheduler = leastloaded + neutron_sync_mode = log + ovn_sb_connection = tcp:: + ovn_nb_connection = tcp:: diff --git a/docs/release/configguide/index.rst b/docs/release/configguide/index.rst new file mode 100644 index 0000000..ddc7f6e --- /dev/null +++ b/docs/release/configguide/index.rst @@ -0,0 +1,22 @@ +.. _ovn4nfv-configguide: + +.. This work is licensed under a Creative Commons Attribution 4.0 International +.. License. http://creativecommons.org/licenses/by/4.0 + +=========================== +OVN4NFV Configuration guide +=========================== + +:Project: OVN4NFV, https://wiki.opnfv.org/display/PROJ/Ovn4nfv + +:Editors: Trinath Somanchi (NXP) +:Authors: Prasad Gorja (NXP) + Trinath Somanchi (NXP) + Prakash Ramchandran (Dell) + +:Abstract: OVN4NFV Configuration Guide + +.. toctree:: + :maxdepth: 1 + + configuration-guide.rst diff --git a/docs/release/configuration-guide.rst b/docs/release/configuration-guide.rst deleted file mode 100644 index 12a6243..0000000 --- a/docs/release/configuration-guide.rst +++ /dev/null @@ -1,187 +0,0 @@ -Devstack Configuration -====================== - -Devstack - localrc/local.conf ------------------------------ - -Sample DevStack local.conf. - -.. code-block:: console - - # - # This sample file is intended to be used for your typical DevStack environment - # that's running all of OpenStack on a single host. This can also be used as - # the first host of a multi-host test environment. - # - # No changes to this sample configuration are required for this to work. - # - DATABASE_PASSWORD=password - RABBIT_PASSWORD=password - SERVICE_PASSWORD=password - SERVICE_TOKEN=password - ADMIN_PASSWORD=password - - # The DevStack plugin defaults to using the ovn branch from the official ovs - # repo. You can optionally use a different one. For example, you may want to - # use the latest patches in blp's ovn branch: - #OVN_REPO=https://github.com/blp/ovs-reviews.git - #OVN_BRANCH=ovn - - enable_plugin networking-ovn https://git.openstack.org/openstack/networking-ovn - enable_service ovn-northd - enable_service ovn-controller - enable_service networking-ovn-metadata-agent - - # Use Neutron instead of nova-network - disable_service n-net - enable_service q-svc - - # Disable Neutron agents not used with OVN. - disable_service q-agt - disable_service q-l3 - disable_service q-dhcp - disable_service q-meta - - # Horizon (the web UI) is enabled by default. You may want to disable - # it here to speed up DevStack a bit. - enable_service horizon - #disable_service horizon - - # Cinder (OpenStack Block Storage) is disabled by default to speed up - # DevStack a bit. You may enable it here if you would like to use it. - disable_service cinder c-sch c-api c-vol - #enable_service cinder c-sch c-api c-vol - - # How to connect to ovsdb-server hosting the OVN NB database. - #OVN_NB_REMOTE=tcp:$SERVICE_HOST:6641 - - # How to connect to ovsdb-server hosting the OVN SB database. - #OVN_SB_REMOTE=tcp:$SERVICE_HOST:6642 - - # A UUID to uniquely identify this system. If one is not specified, a random - # one will be generated and saved in the file 'ovn-uuid' for re-use in future - # DevStack runs. - #OVN_UUID= - - # If using the OVN native layer-3 service, choose a router scheduler to - # manage the distribution of router gateways on hypervisors/chassis. - # Default value is leastloaded. - #OVN_L3_SCHEDULER=leastloaded - - # Whether or not to build custom openvswitch kernel modules from the ovs git - # tree. This is enabled by default. This is required unless your distro kernel - # includes ovs+conntrack support. This support was first released in Linux 4.3, - # and will likely be backported by some distros. - #OVN_BUILD_MODULES=False - - # Enable services, these services depend on neutron plugin. - #enable_plugin neutron https://git.openstack.org/openstack/neutron - #enable_service q-qos - #enable_service q-trunk - - # Skydive - #enable_plugin skydive https://github.com/redhat-cip/skydive.git - #enable_service skydive-analyzer - #enable_service skydive-agent - - # If you want to enable a provider network instead of the default private - # network after your DevStack environment installation, you *must* set - # the Q_USE_PROVIDER_NETWORKING to True, and also give FIXED_RANGE, - # NETWORK_GATEWAY and ALLOCATION_POOL option to the correct value that can - # be used in your environment. Specifying Q_AGENT is needed to allow devstack - # to run various "ip link set" and "ovs-vsctl" commands for the provider - # network setup. - #Q_AGENT=openvswitch - #Q_USE_PROVIDER_NETWORKING=True - #PHYSICAL_NETWORK=providernet - #PROVIDER_NETWORK_TYPE=flat - #PUBLIC_INTERFACE= - #OVS_PHYSICAL_BRIDGE=br-provider - #PROVIDER_SUBNET_NAME=provider-subnet - # use the following for IPv4 - #IP_VERSION=4 - #FIXED_RANGE= - #NETWORK_GATEWAY= - #ALLOCATION_POOL= - # use the following for IPv4+IPv6 - #IP_VERSION=4+6 - #FIXED_RANGE= - #NETWORK_GATEWAY= - #ALLOCATION_POOL= - # IPV6_PROVIDER_FIXED_RANGE= - # IPV6_PROVIDER_NETWORK_GATEWAY= - - # If you wish to use the provider network for public access to the cloud, - # set the following - #Q_USE_PROVIDERNET_FOR_PUBLIC=True - #PUBLIC_NETWORK_NAME= - #PUBLIC_NETWORK_GATEWAY= - #PUBLIC_PHYSICAL_NETWORK= - #IP_VERSION=4 - #PUBLIC_SUBNET_NAME= - #Q_FLOATING_ALLOCATION_POOL= - #FLOATING_RANGE= - - # NOTE: DO NOT MOVE THESE SECTIONS FROM THE END OF THIS FILE - # IF YOU DO, THEY WON'T WORK!!!!! - # - - # Enable Nova automatic host discovery for cell every 2 seconds - # Only needed in case of multinode devstack, as otherwise there will be issues - # when the 2nd compute node goes online. - discover_hosts_in_cells_interval=2 - - -Neutron - metadata_agent.ini --------------------------- - -The following configuration options in /etc/neutron/metadata_agent.ini -are required when OVN is enabled in OpenStack neutron. - -.. code-block:: console - - ... - ... - [ovs] - # - # From networking_ovn.metadata.agent - # - - # The connection string for the native OVSDB backend. - # Use tcp:IP:PORT for TCP connection. - # Use unix:FILE for unix domain socket connection. (string value) - #ovsdb_connection = unix:/usr/local/var/run/openvswitch/db.sock - - # Timeout in seconds for the OVSDB connection transaction (integer value) - #ovsdb_connection_timeout = 180 - - [ovn] - ovn_sb_connection = tcp:: - - -Neutron - neutron.conf --------------------- - -The following configuration changes are required in /etc/neutron/neutron.conf - -.. code-block:: console - - [DEFAULT] - service_plugins = networking_ovn.l3.l3_ovn.OVNL3RouterPlugin - -Neutron - ml2_conf.ini --------------------- - -The following configuration changes are required in /etc/neutron/plugins/ml2/ml2_conf.ini - -.. code-block:: console - - [ml2] - mechanism_drivers = ovn,logger - - [ovn] - ovn_metadata_enabled = True - ovn_l3_scheduler = leastloaded - neutron_sync_mode = log - ovn_sb_connection = tcp:: - ovn_nb_connection = tcp:: diff --git a/docs/release/index.rst b/docs/release/index.rst deleted file mode 100644 index 3dd279d..0000000 --- a/docs/release/index.rst +++ /dev/null @@ -1,21 +0,0 @@ -.. This work is licensed under a Creative Commons Attribution 4.0 International -.. License. http://creativecommons.org/licenses/by/4.0 - -========================== -OVN4NFV Release Notes -========================== - -:Project: OVN4NFV, https://wiki.opnfv.org/display/PROJ/Ovn4nfv - -:Editors: Trinath Somanchi (NXP) -:Authors: Prasad Gorja (NXP) - Trinath Somanchi (NXP) - Prakash Ramchandran (Dell) - -:Abstract: OVN4NFV Release Notes. - -.. toctree:: - :maxdepth: 1 - - release-notes.rst - configuration-guide.rst diff --git a/docs/release/release-notes.rst b/docs/release/release-notes.rst deleted file mode 100644 index ed55bec..0000000 --- a/docs/release/release-notes.rst +++ /dev/null @@ -1,109 +0,0 @@ -.. This work is licensed under a Creative Commons Attribution 4.0 International License. -.. http://creativecommons.org/licenses/by/4.0 -.. (c) Open Platform for NFV Project, Inc. and its contributors - -======== -Abstract -======== - -This document compiles the release notes for OPNFV release when using Apex, -Joid and Fuel as a deployment tool. - -=============== -Important Notes -=============== - -These notes provides release information for the use of Apex, Joid and Fuel -as deployment tool for the Euphrates release of OPNFV. - -The goal of the Euphrates release and this Joid/Apex-based deployment process is -to establish a lab ready platform accelerating further development -of the OPNFV infrastructure. - -Carefully follow the installation-instructions. - -======= -Summary -======= - -For Fraser release, OVN4NFV is supported with APEX, JOID and FUEL installers. - -This Fraser artifact provides Apex, Joind and Fuel as the deployment stage tool in the -OPNFV CI pipeline including: - -- Documentation built by Jenkins - - - overall OPNFV documentation - - - this document (release notes) - - - installation instructions - -- Automated validation of the Fraser deployment. - -============ -Release Data -============ - -+--------------------------------------+--------------------------------------+ -| **Project** | ovn4nfv | -| | | -+--------------------------------------+--------------------------------------+ -| **Repo/tag** | opnfv-6.0.0 | -| | | -+--------------------------------------+--------------------------------------+ -| **Release designation** | Fraser 6.1 | -| | | -+--------------------------------------+--------------------------------------+ -| **Release date** | April 27 2018 | -| | | -+--------------------------------------+--------------------------------------+ -| **Purpose of the delivery** | Bug fixes, | -| | Document improvements, | -| | Scenario documentation. | -+--------------------------------------+--------------------------------------+ - - -Deliverables -============ - -Software Deliverables ---------------------- - -- `Apex based installation `_ - -- `Joid based installation `_ - -- `Fuel based installation `_ - -Documentation Deliverables --------------------------- - -- `Installation instructions `_ - -- Release notes (This document) - -- `User guide and Testing notes `_ - -- `Scenario Documentation (JOID - K8S-OVN) `_ - - -========== -References -========== -For more information, please see: - -OPNFV -===== - -1) `OPNFV Home Page `_ -2) `OPNFV Documentation `_ -3) `OPNFV Software Downloads `_ -4) `OVN4NFV Project `_ - -OpenStack -========= - -1) `networking-ovn Project `_ -2) `OVN with K8S `_ -3) `OVN Architecture `_ diff --git a/docs/release/release-notes/index.rst b/docs/release/release-notes/index.rst new file mode 100644 index 0000000..4c305f3 --- /dev/null +++ b/docs/release/release-notes/index.rst @@ -0,0 +1,23 @@ +.. _ovn4nfv-releasenotes: + +.. This work is licensed under a Creative Commons Attribution 4.0 International +.. License. http://creativecommons.org/licenses/by/4.0 + +============================== +OVN4NFV - Fraser Release Notes +============================== + +:Project: OVN4NFV, https://wiki.opnfv.org/display/PROJ/Ovn4nfv + +:Editors: Trinath Somanchi (NXP India) +:Authors: Prasad Gorja (NXP India) + Trinath Somanchi (NXP India) + Prakash Ramchandran (Dell) + Aakash K T (IIIT Hyderabad, INDIA) + +:Abstract: OVN4NFV Release Notes. + +.. toctree:: + :maxdepth: 1 + + release-notes.rst diff --git a/docs/release/release-notes/release-notes.rst b/docs/release/release-notes/release-notes.rst new file mode 100644 index 0000000..2bc14d9 --- /dev/null +++ b/docs/release/release-notes/release-notes.rst @@ -0,0 +1,113 @@ +.. _ovn4nfv-releasenotes: + +.. This work is licensed under a Creative Commons Attribution 4.0 International License. +.. http://creativecommons.org/licenses/by/4.0 +.. (c) Open Platform for NFV Project, Inc. and its contributors + +======== +Abstract +======== + +This document compiles the release notes for OPNFV release when using Apex, +Joid and Fuel as a deployment tool. + +=============== +Important Notes +=============== + +This notes provides release information for the use of Apex, Joid and Fuel +as deployment tool for the Fraser release of OPNFV. + +The goal of the Fraser release and this Apex, Fuel and Joid based deployment +process is to establish a lab ready platform accelerating further development +of the OPNFV infrastructure. + +Carefully follow the installation-instructions. + +======= +Summary +======= + +For Fraser release, OVN4NFV is supported with APEX, JOID and FUEL installers. + +This Fraser artifact provides Apex, Joind and Fuel as the deployment stage tool in the +OPNFV CI pipeline including: + +- Documentation built by Jenkins + + - overall OPNFV documentation + + - this document (release notes) + + - installation instructions + +- Automated validation of the Fraser deployment. + +============ +Release Data +============ + ++--------------------------------------+--------------------------------------+ +| **Project** | ovn4nfv | +| | | ++--------------------------------------+--------------------------------------+ +| **Repo/tag** | opnfv-6.0.0 | +| | | ++--------------------------------------+--------------------------------------+ +| **Release designation** | Fraser 6.0 | +| | | ++--------------------------------------+--------------------------------------+ +| **Release date** | April 27 2018 | +| | | ++--------------------------------------+--------------------------------------+ +| **Purpose of the delivery** | > Bug fixes, | +| | > Document improvements, | +| | > Scenario documentation. | +| | > OVN no-feature scenario support | +| | with Fuel installer. | ++--------------------------------------+--------------------------------------+ + + +Deliverables +============ + +Software Deliverables +--------------------- + +- `Apex based installation `_ + +- `Joid based installation `_ + +- `Fuel based installation `_ + +Documentation Deliverables +-------------------------- + +- `Installation instructions `_ + +- Release notes (This document) + +- `User guide and Testing notes `_ + +- `Scenario Documentation (JOID - K8S-OVN) `_ + + +========== +References +========== +For more information, please see: + +OPNFV +===== + +1) `OPNFV Home Page `_ +2) `OPNFV Documentation `_ +3) `OPNFV Software Downloads `_ +4) `OVN4NFV Project `_ + +OpenStack +========= + +1) `networking-ovn Project `_ +2) `OVN with K8S `_ +3) `OVN Architecture `_ diff --git a/docs/scenarios/index.rst b/docs/scenarios/index.rst index 7954179..82a81f0 100644 --- a/docs/scenarios/index.rst +++ b/docs/scenarios/index.rst @@ -1,3 +1,5 @@ +.. _ovn4nfv-scenarios: + .. This work is licensed under a Creative Commons Attribution 4.0 International Licence. .. http://creativecommons.org/licenses/by/4.0 .. (c) @@ -6,6 +8,16 @@ OVN4NFV Installer Scenarios ============================= +:Editors: Trinath Somanchi (NXP India) +:Authors: Prasad Gorja (NXP India) + Trinath Somanchi (NXP India) + Prakash Ramchandran (Dell) + Aakash K T (IIIT Hyderabad INDIA) + +:Abstract: Installer scenario documenation. + Currently Apex, Fuel and Joid support OVN no-feature and feature + scenarios. + .. toctree:: :numbered: :maxdepth: 4 diff --git a/docs/testing/index.rst b/docs/testing/index.rst index b0d0585..c94f1a7 100644 --- a/docs/testing/index.rst +++ b/docs/testing/index.rst @@ -1,3 +1,5 @@ +.. _ovn4nfv-testing: + .. This work is licensed under a Creative Commons Attribution 4.0 International .. License. http://creativecommons.org/licenses/by/4.0 @@ -7,12 +9,12 @@ OVN4NFV Testing Notes :Project: OVN4NFV, https://wiki.opnfv.org/display/PROJ/Ovn4nfv -:Editors: Vikram Dham (Huawei) -:Authors: Vikram Dham (Huawei) - Trinath Somanchi (NXP) - Prakash Ramchandran (Huawei) +:Editors: Trinath Somanchi (NXP India) +:Authors: Prasad Gorja (NXP India) + Trinath Somanchi (NXP India) + Prakash Ramchandran (Dell) -:Abstract: OVN4NFV Release Notes. +:Abstract: OVN4NFV Testing Notes. .. toctree:: :maxdepth: 1 -- cgit 1.2.3-korg