summaryrefslogtreecommitdiffstats
path: root/docs/guides/onap-developer/settingup/index.rst
diff options
context:
space:
mode:
authorEric Debeau <eric.debeau@orange.com>2019-04-15 07:00:19 +0000
committerEric Debeau <eric.debeau@orange.com>2019-04-15 11:01:54 +0000
commitaa55c500e3a1d05880863824913f7f6e530116d7 (patch)
tree291fdbfac50fa5cf95d33b540b401989976f13be /docs/guides/onap-developer/settingup/index.rst
parent82a166c5431cc6569a65217c474b30761c1fcfad (diff)
Add NodePorts table
Add the NodePorts table with information extracted from the Casablanca Maintenance Release deployment Correct missing component for 30236 NodePort Issue-ID: DOC-430 Change-Id: I554cad580d9b2a56ad9df99d3e60e0bfb66c9a12 Signed-off-by: Eric Debeau <eric.debeau@orange.com>
Diffstat (limited to 'docs/guides/onap-developer/settingup/index.rst')
-rw-r--r--docs/guides/onap-developer/settingup/index.rst20
1 files changed, 18 insertions, 2 deletions
diff --git a/docs/guides/onap-developer/settingup/index.rst b/docs/guides/onap-developer/settingup/index.rst
index d3f5c66ff..2b9f8b133 100644
--- a/docs/guides/onap-developer/settingup/index.rst
+++ b/docs/guides/onap-developer/settingup/index.rst
@@ -5,6 +5,7 @@
.. Modifications Copyright 2018 Orange
.. Modifications Copyright 2018 Amdocs
.. Modifications Copyright 2018 Huawei
+.. Modifications Copyright 2019 Orange
Setting Up ONAP
===============
@@ -73,8 +74,23 @@ microservice.
It should be noted that the use of NodePorts is temporary.
An alternative solution is currently being scoped for the Dublin Release.
-* The list of node ports used by ONAP is documented
- in `ONAP Node Port List <https://wiki.onap.org/display/DW/OOM+NodePort+List>`_.
+More information from official Kubernetes documentation about
+`NodePort <https://kubernetes.io/docs/concepts/services-networking/service/#nodeport>`_.
+
+The following table lists all the NodePorts used by ONAP.
+
+.. csv-table:: NodePorts table
+ :file: nodeports.csv
+ :widths: 20,20,20,20,20
+ :header-rows: 1
+
+This table retrieves information from the ONAP deployment using the following
+Kubernetes command:
+
+.. code-block:: bash
+
+ kubectl get svc -n onap -o go-template='{{range .items}}{{range.spec.ports}}{{if .nodePort}}{{.nodePort}}{{.}}{{"\n"}}{{end}}{{end}}{{end}}'
+
.. note::
Prior to deployment of ONAP, there is no need to download manually any Docker container.