summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordfarrelly <david.farrelly@est.tech>2019-05-13 15:28:19 +0000
committerdfarrelly <david.farrelly@est.tech>2019-05-13 15:28:19 +0000
commitb643761e44851acf519fa039e11c2f413e7a25aa (patch)
treec6047b5d1f90390cc31cadf6dd33a6f39f1b4f6a
parent4791b24908fc1e93f5596cacc903714a8300c449 (diff)
Update PM Mapper installation docs
Issue-ID: DCAEGEN2-1038 Change-Id: Ia537c7d45adad2a154076cb4a1f0a0816111f5ab Signed-off-by: dfarrelly <david.farrelly@est.tech>
-rw-r--r--docs/sections/services/pm-mapper/installation.rst57
1 files changed, 55 insertions, 2 deletions
diff --git a/docs/sections/services/pm-mapper/installation.rst b/docs/sections/services/pm-mapper/installation.rst
index dd80bdc7..51ae5a46 100644
--- a/docs/sections/services/pm-mapper/installation.rst
+++ b/docs/sections/services/pm-mapper/installation.rst
@@ -4,6 +4,59 @@
Installation
============
-PM mapper is a microservice that will be instantiated by Cloudify Manager. PM Mapper blueprint is uploaded into Cloudify Manager where the user can configure the PM Mapper.
-Cloudify Manager will then proceed to instantiate the pm mapper service within DCAE Services. During instantiation, the PM mapper will query configuration information using the Config Binding Service.
+PM mapper is a microservice that will be configured and instantiated through Cloudify Manager, either through the user
+interface or the command line tool. During instantiation, the PM Mapper will fetch its configuration through the Config Binding Service. Steps to deploy using the CLI tool are shown below.
+
+Deployment Prerequisite/dependencies
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+ - DCAE and DMaaP pods should be up and running.
+ - DMaaP Bus Controller post install jobs should have completed successfully (executed as part of an OOM install).
+ - Make sure that cfy is installed and configured to work with the Cloudify deployment.
+
+Deployment steps
+^^^^^^^^^^^^^^^^
+
+Enter the Cloudify Manager kuberenetes pod
+
+ - Download the PM Mapper blueprint onto the pod, this can be found in:
+
+ https://gerrit.onap.org/r/gitweb?p=dcaegen2/services/pm-mapper.git;a=blob_plain;f=dpo/blueprints/k8s-pm-mapper.yaml;h=b331e41222377b8fbf7b68b4f5fff5ba5998da16;hb=refs/heads/dublin
+
+ - Create inputs.yaml
+
+ Configuration of the service consists of generating an inputs file (YAML) which will be used as part of the
+ Cloudify install. The PM-Mapper blueprints were designed with sane defaults for the majority of the fields.
+ Below you will find some examples of fields which can be configured, and some of the fields
+ which must be configured. The full list of configurable parameters can be seen within the blueprint file under
+ "inputs".
+
+ .. csv-table::
+ :widths: auto
+ :delim: ;
+ :header: Property , Sample Value , Description , Required
+
+ aaf_username ; dcae@dcae.onap.org ; In the Dublin release information about the AAF user must be provided to enable publishing to authenticated topics. ; Yes
+ aaf_password ; <dcae_password> ; This is the password for the given user e.g. The <dcae_password> is dcae@dcae.onap.org's password. ; Yes
+ enable_http ; true ; By default, the PM-Mapper will only allow inbound queries over HTTPS. However, it is possible to configure it to enable HTTP also. ; No
+ tag_version ; nexus3.onap.org:10001/onap/org.onap.dcaegen2.services.pm-mapper:1.0.1 ; The tag of the Docker image will be used when deploying the PM-Mapper. ; No
+ pm-mapper-filter ; {"filters": [{"pmDefVsn":"targetVersion", "nfType":"targetNodeType", "vendor":"targetVendor","measTypes":["targetMeasType"]}]} ; The default behavior of the PM-Mapper is to map all measType in the received PM XML files, however, it's possible to provide filtering configuration which will reduce the VES event to the counters that the designer has expressed interest in. ; No
+
+ Example inputs.yaml
+
+ .. code-block:: yaml
+
+ aaf_username: dcae@dcae.onap.org
+ aaf_password: <dcae_password>
+ enable_http: false
+ tag_version: nexus3.onap.org:10001/onap/org.onap.dcaegen2.services.pm-mapper:1.0.1
+ pm-mapper-filter: {"filters": []}
+
+
+
+ - Create deployment
+
+ .. code-block:: bash
+
+ cfy install --blueprint-id pm-mapper --deployment-id pm-mapper -i inputs.yaml k8s-pm-mapper.yaml