Merge changes from topics "OAM-344", "OAM-345"
authorMartin Skorupski <martin.skorupski@highstreet-technologies.com>
Tue, 4 Jul 2023 15:40:47 +0000 (15:40 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Tue, 4 Jul 2023 15:40:47 +0000 (15:40 +0000)
* changes:
  Add Wireshark and jenkins
  Add Wireshark and jenkins
  Add Wireshark and jenkins
  Distinguish between DCN and OAM network
  Distinguish between DCN and OAM network
  Update Flows for Kafka-Bridge usage
  Correct getBaseUrl method
  Distinguish between expected and active topology
  Distinguish between expected and active topology
  Distinguish between expected and active topology
  Correct usage of Domain environment variable.

docs/faq.rst
docs/overview.rst
docs/release-notes.rst
docs/requirements-docs.txt
tox.ini

index 3a4345d..98a281a 100644 (file)
@@ -9,7 +9,7 @@
 Frequently asked questions
 ==========================
 
-Which browser should I use to operate Opendaylight SDN-R User interface?
+Which browser should I use to operate OpenDaylight SDN-R User interface?
 ------------------------------------------------------------------------
 
 An actual version of `Google
@@ -47,7 +47,7 @@ set back the debug level to 'INFO' as soon possible.
 
 --------------
 
-Which commands should be used to analyse karaf logs?
+Which commands should be used to analyze karaf logs?
 ----------------------------------------------------
 
 ::
index b297a26..b1223a3 100644 (file)
@@ -6,7 +6,7 @@ OAM Operation and Maintenance Overview
 ======================================
 
 The O-RAN SC OAM project provides administrative and operator
-functions for O-RAN components, such as Near-Realtime-RAN-Inelegant-Controller,
+functions for O-RAN components, such as Near-Realtime-RAN-Intelligent-Controller,
 O-RAN Centralized Unit, O-RAN Distributed Unit and O-RAN Radio Unit.
 
 The project follows the specifications for the `O1 interface <https://www.o-ran.org/specifications>`_
index c6b1538..e3104a7 100644 (file)
@@ -211,7 +211,7 @@ Version 4.0.3, 2021-04-23
 +--------------------------------------------------------------------+-------------------------------------------------------------------------+
 | `OAM-184     <https://jira.o-ran-sc.org/browse/OAM-184>`__         | Create VES client example for domain 'stateChange'                      |
 +--------------------------------------------------------------------+-------------------------------------------------------------------------+
-| `OAM-185     <https://jira.o-ran-sc.org/browse/OAM-185>`__         | Create VES client example for domain 'stndefined'                       |
+| `OAM-185     <https://jira.o-ran-sc.org/browse/OAM-185>`__         | Create VES client example for domain 'stndDefined'                      |
 +--------------------------------------------------------------------+-------------------------------------------------------------------------+
 | `OAM-187     <https://jira.o-ran-sc.org/browse/OAM-187>`__         | Update Jenkins Jobs                                                     |
 +--------------------------------------------------------------------+-------------------------------------------------------------------------+
@@ -271,7 +271,7 @@ Version 4.0.3, 2021-04-23
 +--------------------------------------------------------------------+-------------------------------------------------------------------------+
 | `OAM-184     <https://jira.o-ran-sc.org/browse/OAM-184>`__         | Create VES client example for domain 'stateChange'                      |
 +--------------------------------------------------------------------+-------------------------------------------------------------------------+
-| `OAM-185     <https://jira.o-ran-sc.org/browse/OAM-185>`__         | Create VES client example for domain 'stndefined'                       |
+| `OAM-185     <https://jira.o-ran-sc.org/browse/OAM-185>`__         | Create VES client example for domain 'stndDefined'                      |
 +--------------------------------------------------------------------+-------------------------------------------------------------------------+
 | `OAM-187     <https://jira.o-ran-sc.org/browse/OAM-187>`__         | Update Jenkins Jobs                                                     |
 +--------------------------------------------------------------------+-------------------------------------------------------------------------+
@@ -354,12 +354,12 @@ Version 2.0.3, 2020-04-08
 -------------------------
 
 * What is an SMO?
-* Provide xRAN datamodels
+* Provide xRAN data-models
 * Provide curl bash scripts for Software Management
 * Add jenkins jobs for oam
 * Add parents to model artifacts
 * Add top level pom file to distribution
-* Wrong image tag in nonrt-o1-controller distribution pom
+* Wrong image tag in non-rt-ric-o1-controller distribution pom
 * Use ONAP release parents directly
 * Adjust artifact group name to ORAN naming rule
 * Use ORAN parents
index 4f9d174..3ecb51e 100644 (file)
@@ -1,5 +1,13 @@
-sphinx
-sphinx-rtd-theme
-sphinxcontrib-httpdomain
-recommonmark
-lfdocs-conf
\ No newline at end of file
+tox
+Sphinx
+doc8
+docutils < 0.17
+setuptools
+six
+sphinx_rtd_theme
+sphinxcontrib-needs
+sphinxcontrib-swaggerdoc
+sphinx_bootstrap_theme
+sphinxcontrib-redoc
+lfdocs-conf
+urllib3~=1.26.15
diff --git a/tox.ini b/tox.ini
index 9ab0da4..22f612e 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -8,23 +8,14 @@ skipsdist = true
 
 [testenv:docs]
 basepython = python3
-deps = 
-    sphinx
-    sphinx-rtd-theme
-    sphinxcontrib-httpdomain
-    recommonmark
-    lfdocs-conf
+deps = -r{toxinidir}/docs/requirements-docs.txt
     
 commands =
     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
     echo "Generated docs available in {toxinidir}/docs/_build/html"
-whitelist_externals = echo
+allowlist_externals = echo
 
 [testenv:docs-linkcheck]
 basepython = python3
-deps = sphinx
-       sphinx-rtd-theme
-       sphinxcontrib-httpdomain
-       recommonmark
-       lfdocs-conf
+deps = -r{toxinidir}/docs/requirements-docs.txt
 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck
\ No newline at end of file