diff options
author | Tomasz Wrobel <tomasz.wrobel@nokia.com> | 2022-02-17 12:46:53 +0100 |
---|---|---|
committer | Tomasz Wrobel <tomasz.wrobel@nokia.com> | 2022-02-18 15:52:39 +0100 |
commit | b3bf93afee0256478e9444a083133932d3536ad0 (patch) | |
tree | 6ce430e36cc5b6fb5460190fa5e273e86ee8e5f1 /docs/sections/services | |
parent | 8638cfbf3047626986b6037f98b610f25884f5d8 (diff) |
[Pm-mapper] Add description of disable TLS and use unauthenticated topics
Issue-ID: DCAEGEN2-3032
Issue-ID: DCAEGEN2-3038
Signed-off-by: Tomasz Wrobel <tomasz.wrobel@nokia.com>
Change-Id: I8fe94be26f90ce3b1a4ff75a434a3c55c1246613
Diffstat (limited to 'docs/sections/services')
-rw-r--r-- | docs/sections/services/pm-mapper/configuration.rst | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/docs/sections/services/pm-mapper/configuration.rst b/docs/sections/services/pm-mapper/configuration.rst index df7423a5..46a73f2c 100644 --- a/docs/sections/services/pm-mapper/configuration.rst +++ b/docs/sections/services/pm-mapper/configuration.rst @@ -1,5 +1,6 @@ .. This work is licensed under a Creative Commons Attribution 4.0 International License. .. http://creativecommons.org/licenses/by/4.0 +.. Copyright 2022 Nokia. All rights reserved. Configuration and Performance ============================= @@ -42,6 +43,56 @@ Envs should be specified in section "envs:" in blueprint. Example part of bluepr ... +.. _pm_mapper_disable_tls: + +Disable TLS +""""""""""" +Pm-mapper by default uses communication over TLS, but it is also possible to use plain http request. To disable TLS, set configuration flag 'enable_http' to true, and set the certificate paths to empty strings or remove them from the configuration. See the config.yaml examples below. + +.. code-block:: yaml + + applicationConfig: + enable_http: true + key_store_path: "" + key_store_pass_path: "" + trust_store_path: "" + trust_store_pass_path: "" + + + +Or + +.. code-block:: yaml + + applicationConfig: + enable_http: true + #key_store_path: + #key_store_pass_path: + #trust_store_path: + #trust_store_pass_path: + + +Unauthenticated topic +""""""""""""""""""""" +To use unauthenticated topics :ref:`disable TLS <pm_mapper_disable_tls>`, and edit AAF credentials in configuration, it should be removed or set to empty string. See the examples below. + +.. code-block:: yaml + + applicationConfig: + aaf_identity: "" + aaf_password: "" + + +Or + +.. code-block:: yaml + + applicationConfig: + #aaf_identity: + #aaf_password: + + + PM Mapper Filtering """"""""""""""""""" The PM Mapper performs data reduction, by filtering the PM telemetry data it receives. |