summaryrefslogtreecommitdiffstats
path: root/docs/sections/services/prh/configuration.rst
diff options
context:
space:
mode:
authorsangeeta.bellara <sangeeta.bellara@t-systems.com>2023-04-29 15:15:12 +0530
committerVijay Venkatesh Kumar <vv770d@att.com>2023-05-01 16:09:27 +0000
commit7dcdb641d749496cf8178e8a9b2178684595eebe (patch)
treed4d98f30600e1cac2e8d3a33535d82f16a329d01 /docs/sections/services/prh/configuration.rst
parenta6f72a8f1c7bd93ca5916cd73d4226208ff469d3 (diff)
Documentation for new PRH feature to handle early registration
onap-gerrit-review: -changelog-or-release-file-missing onap-gerrit-review: -changelog-missing onap-gerrit-review: -missing-setup-py onap-gerrit-review: -no-nl-ending-on-files Issue-ID: DCAEGEN2-3387 Change-id: 9470749204 Signed-off-by: Sangeeta Bellara <sangeeta.bellara@t-systems.com> Change-Id: Ifaf20eb16eeb1497aa1926fc15b5f63298b5364b
Diffstat (limited to 'docs/sections/services/prh/configuration.rst')
-rw-r--r--docs/sections/services/prh/configuration.rst28
1 files changed, 27 insertions, 1 deletions
diff --git a/docs/sections/services/prh/configuration.rst b/docs/sections/services/prh/configuration.rst
index 5bdc423c..560c08c8 100644
--- a/docs/sections/services/prh/configuration.rst
+++ b/docs/sections/services/prh/configuration.rst
@@ -1,7 +1,6 @@
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
-.. _prh_configuration:
Configuration
=============
@@ -67,3 +66,30 @@ PRH fetches configuration directly from CBS service in the following JSON format
}
The configuration is created from PRH helm charts by specifying **applicationConfig** during ONAP OOM/Kubernetes deployment.
+
+For PRH 1.9.0 version (London) , a new mode has been introduced which allows early PNF registrations. This mode uses a direct Kafka consumer and not the DMAAP consumer. This mode is not the default mode and has to be activated by setting certain environment variables in the Helm chart values.yaml file under **applicationEnv**, as shown below:
+
+.. code-block:: yaml
+
+
+ - name: kafkaBoostrapServerConfig
+ value: onap-strimzi-kafka-bootstrap:9092
+ - name: groupIdConfig
+ value: OpenDCAE-c12
+ - name: kafkaUsername
+ value: strimzi-kafka-admin
+ - name: kafkaPassword
+ valueFrom:
+ secretKeyRef:
+ key: password
+ name: strimzi-kafka-admin
+ - name: kafkaTopic
+ value: unauthenticated.VES_PNFREG_OUTPUT
+ - name: SPRING_PROFILES_ACTIVE
+ value: autoCommitDisabled
+ - name: JAAS_CONFIG
+ valueFrom:
+ secretKeyRef:
+ key: sasl.jaas.config
+ name: strimzi-kafka-admin
+