SDNC-762: Documentation for SDNC keys installation 56/87756/2
authorDarraghEgan <darragh.egan@est.tech>
Wed, 15 May 2019 12:44:12 +0000 (12:44 +0000)
committerDarraghEgan <darragh.egan@est.tech>
Wed, 15 May 2019 12:44:12 +0000 (12:44 +0000)
Creating documentation to explain the steps
needed for the installation of keys and
certificates in ODL for SDNC.

Issue-ID: SDNC-762
Change-Id: I2635027b7afbc4bcee4631989ec79e4feb1b8b51
Signed-off-by: DarraghEgan <darragh.egan@est.tech>
Former-commit-id: 186befdfa74d04794b27cbb3d73d8beb18d17c0d

docs/cert_installation.rst [new file with mode: 0644]
docs/images/certs_properties.png [new file with mode: 0644]
docs/images/client_certificate.png [new file with mode: 0644]
docs/images/client_key.png [new file with mode: 0644]
docs/images/get_keystore.png [new file with mode: 0644]
docs/images/trusted_certificate.png [new file with mode: 0644]

diff --git a/docs/cert_installation.rst b/docs/cert_installation.rst
new file mode 100644 (file)
index 0000000..8e665c2
--- /dev/null
@@ -0,0 +1,222 @@
+.. This work is licensed under a Creative Commons Attribution 4.0 International License.
+.. http://creativecommons.org/licenses/by/4.0
+
+============================================================
+Installing Keys and Certificates in ODL for NETCONF over TLS
+============================================================
+
+The purpose of this document is to help you with the setup needed for the installation of xNF keys and certificates inside of OpenDaylight(ODL) in SDNC. 
+
+To use NETCONF over TLS, ODL needs to be configured with Keys and Certificates to use for TLS connections.
+
+Preparing Required Key and Certificate Files
+============================================
+
+The first step to adding the keys and certificates for ODL is to have configured a zip file made up of your keys and certificates that ODL needs.
+
+There are three files required in the zip file and those are:
+    1. client.crt
+    2. client.key
+    3. trustedCertificates.crt which contains a list of trusted certificates - normally one or more CA or sub-CA certificates, or xNF self-signed certificate(s) for testing only
+
+Client.crt represents the client certificate and the client.key is the private key that is to be used.
+Only a single client/client cert is supported as of the Dublin release and multiple clients are not supported. 
+
+These files will all be needed when configuring ODL’s private key, own certificate and trusted certificates.
+
+An example of the three required files that are needed in the zip folder can be seen  in the screenshots below:
+
+
+       .. image:: images/client_certificate.png
+          :align: center
+
+
+       .. image:: images/client_key.png
+          :align: center
+
+
+       .. image:: images/trusted_certificate.png
+          :align: center
+
+
+
+Once you have these three files created you need to create a zip file from these files. 
+You will then have to add the name of this zip file to a file called certs.properties file.
+You should use the naming convention “keys<IncrementedNumber>.zip” that is used in the screenshot below and that between each zip file there is a new line with “\*****” between each zip file.
+Since the Dublin release only supports a single client this means that there should be only one zip file present.
+
+Below is an image of how the certs.properties files should be written: 
+
+       .. image:: images/certs_properties.png
+
+
+
+How to Install Certs and Keys when deploying SDNC/ODL with OOM in K8s environment
+=================================================================================
+
+At setup time, you will need to place the zip file along with the certs.properties file in the following file path:
+   */docker-data/sdnc/certs/*
+
+Placing the files in this location will ensure that your files are mounted into the SDNC container at run time in the /tmp folder.
+
+If you are running in a Kubernetes container and would like to edit the default mount path you need to go to the following path:
+       *oom/kubernetes/sdnc/values.yaml*
+
+
+If you have your zip file and the certs.properties file set up correctly at setup-time, these RPC’s will automatically be called from the installCerts.py file and your keys and certificates will be added to the ODL keystore for you. 
+
+The last step that is needed once you have your zip file and certs.properties file in the correct folder you need to run the following command to deploy ONAP:
+
+.. code-block:: bash
+
+       helm deploy dev local/onap -f /root/oom/kubernetes/onap/resources/environments/public-cloud.yaml -f /root/integration-override.yaml --namespace onap --verbose
+
+Or if you do not want to deploy the full ONAP but just SDNC container run:
+
+.. code-block:: bash
+
+       helm upgrade -i dev-sdnc <path to sdnc chart> --namespace onap  -f <path to global override> -f <path to sdnc sub chart>
+
+Example of this full command is:
+
+.. code-block:: bash
+
+       helm upgrade -i dev-sdnc /root/.helm/plugins/deploy/cache/onap-subcharts/sdnc --namespace onap -f /root/.helm/plugins/deploy/cache/onap/global-overrides.yaml -f /root/.helm/plugins/deploy/cache/onap-subcharts/sdnc/subchart-overrides.yaml
+
+
+How to Install Certs and Keys when deploying SDNC/ODL with docker-compose
+=========================================================================
+
+If you want to do a local installation of SDNC/ODL with docker-compose you need to first download the OAM repo from the gerrit repo with the following URL.
+
+       *git clone https://gerrit.onap.org/r/sdnc/oam*
+
+Once you have this downloaded you need to go the following location.
+
+       */oam/installation/src/main/yaml*
+
+Once you are there you need to edit the docker-compose.yaml file to include your directory where you have the zip file and certs.properties located. 
+
+You need to add in the following lines into the yaml file just below *container_name: sdnc_controller_container* in the file::
+
+       volumes:
+         - <Your_Workspace>:/opt/opendaylight/current/certs
+
+Once you have the mount path for your files added into the yaml file you can run the following command::
+
+       docker-compose up -d
+
+
+Clustering:
+=============
+
+For running a Kubernetes cluster using a pre-built SDNC image the keys and certificates only need to be placed on a single mount point and not put on each image individually as the keys and certificates will be replicated across all instances in the cluster.
+
+To get your Kubernetes running in a cluster, you need to SSH into your Rancher machine that your pods are running on and go to the directory:
+
+       */root/oom/kubernetes/sdnc/*
+
+In this directory you will find the values.yaml file which is the one you will need to edit. You need to find the variable *replicaCount* which is the default number of instances and change that value to 3 for clustering and also look for config: enableClustering and ensure that it is set to true.
+
+Once this is edited you will need to stop the SDNC container with the command:
+
+.. code-block:: bash
+
+       helm delete --purge dev-sdnc
+
+       make all
+
+       helm upgrade -i dev-sdnc /root/oom/kubernetes/sdnc --namespace onap -f /root/.helm/plugins/deploy/cache/onap/global-overrides.yaml -f /root/.helm/plugins/deploy/cache/onap-subcharts/sdnc/subchart-overrides.yaml
+
+
+EXAMPLE: Mounting pnf-simulator
+===============================
+
+If you want to mount a pnf-simulator onto the SDNC container the you must have the pnf-simulator container up and running and the SDNC container running with the keys and certificates in the ODL keystore.
+
+To mount your pnf-simulator you must send the following RPC:
+    *PUT /restconf/config/network-topology:network-topology/topology/topology-netconf/node/pnf-simulator*
+
+
+You must also send this as the body of the request::
+
+    <node xmlns="urn:TBD:params:xml:ns:yang:network-topology">
+        <node-id>pnf-simulator</node-id>
+        <key-based xmlns="urn:opendaylight:netconf-node-topology">
+            <key-id xmlns="urn:opendaylight:netconf-node-topology">ODL_private_key_0</key-id>
+             <username xmlns="urn:opendaylight:netconf-node-topology">netconf</username>
+         </key-based>
+         <host xmlns="urn:opendaylight:netconf-node-topology">IP-ADDRESS</ip-address></host>
+         <port xmlns="urn:opendaylight:netconf-node-topology">6513</port>
+         <tcp-only xmlns="urn:opendaylight:netconf-node-topology">false</tcp-only>
+            <protocol xmlns="urn:opendaylight:netconf-node-topology">
+             <name xmlns="urn:opendaylight:netconf-node-topology">TLS</name>
+         </protocol>
+         <max-connection-attempts xmlns="urn:opendaylight:netconf-node-topology">2</max-connection-attempts>
+     </node>
+
+
+where IP-ADDRESS is the ip-address you are trying to mount the pnf-simulator on. 
+
+
+
+APPENDIX:
+===========
+
+ODL Commands
+~~~~~~~~~~~~~
+There are three RPC’s needed to configure the keys and certificates for TLS and these are:
+
+    1. “add-keystore-entry” 
+    2. “add-private-keys”
+    3. “add-trusted-certificate”
+
+These three commands will be implemented by scripts in the SDNC container so these will all be implemented automatically.
+
+add-keystore-entry
+-----------------------------
+This is used to add the client private key from the xNF and a key-id to ODL’s TLS keystore. This is triggered with a POST command on ODL’s keystore operations.
+
+The “private-key” data is taken form the client.key file. 
+
+add-private-keys
+---------------------------
+This is used to associate the private key with the client certificate and CA from the xNF and add it to the ODL keystore.
+
+       
+add-trusted-certificate
+-------------------------------------
+This is used to add the list of CA’s and server certificates from the xnf as trusted certificates. The trustedCertificates.crt file is needed for this action as it contains the list of CA’s.
+
+
+Checking Correct Certs Installation
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+If you would like to run a check to make sure that your keys and certificates were installed correctly in ODL you can run the following command in Postman REST client:
+       *GET http://localhost:8282/restconf/config/netconf-keystore:keystore*
+
+The authorization that is needed to gain access to ODL’s restconf interface is the default SDNC username and password. 
+
+You should get a response back which looks like the screenshot below:
+
+       .. image:: images/get_keystore.png
+
+
+
+
+
+
+ODL APIs:
+--------------
+
+The ODL features that are installed by the SDNC script are:
+
+       **odl-restconf-all**
+
+       **odl-mdsal-all**
+
+       **odl-netconf-topology**
+
+When we are using a clustered topology some of these features are replaced by other features.
+       **odl-netconf-clustered-topology** replaces **odl-netconf-topology**  as these two features cannot be installed together as it will break ODL. 
+       
+       **odl-mdsal-clustering** also gets installed.
diff --git a/docs/images/certs_properties.png b/docs/images/certs_properties.png
new file mode 100644 (file)
index 0000000..34d9db5
Binary files /dev/null and b/docs/images/certs_properties.png differ
diff --git a/docs/images/client_certificate.png b/docs/images/client_certificate.png
new file mode 100644 (file)
index 0000000..46b852d
Binary files /dev/null and b/docs/images/client_certificate.png differ
diff --git a/docs/images/client_key.png b/docs/images/client_key.png
new file mode 100644 (file)
index 0000000..48f94eb
Binary files /dev/null and b/docs/images/client_key.png differ
diff --git a/docs/images/get_keystore.png b/docs/images/get_keystore.png
new file mode 100644 (file)
index 0000000..77b563f
Binary files /dev/null and b/docs/images/get_keystore.png differ
diff --git a/docs/images/trusted_certificate.png b/docs/images/trusted_certificate.png
new file mode 100644 (file)
index 0000000..c57211e
Binary files /dev/null and b/docs/images/trusted_certificate.png differ