Update Readme
[clamp.git] / README.md
index d129e5b..f6a0ec7 100644 (file)
--- a/README.md
+++ b/README.md
@@ -37,44 +37,64 @@ Currently, the clamp docker image can be deployed with small configuration needs
 \r
 ### Databases\r
 There are two needed datasource for Clamp. By default, both will try to connect to the localhost server using the credentials available in the example SQL files. If you need to change the default database host and/or credentials, you can do it by using the following json as SPRING_APPLICATION_JSON environment variable :\r
+Note that all others configurations can be configured in the JSON as well, \r
 \r
 ```json\r
 {\r
-    "spring.datasource.camunda.url": "jdbc:mysql://anotherDB.onap.org:3306/camundabpm?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",\r
-    "spring.datasource.camunda.username": "admin",\r
-    "spring.datasource.camunda.password": "password",\r
-    "spring.datasource.cldsdb.url": "jdbc:mysql://anotherDB.onap.org:3306/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",\r
+    "spring.datasource.cldsdb.url": "jdbc:mysql://anotherDB.onap.org:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3",\r
     "spring.datasource.cldsdb.username": "admin",\r
     "spring.datasource.cldsdb.password": "password"\r
+    \r
+    "clamp.config.sdc.catalog.url": "https://sdchost:8443/sdc/v1/catalog/",\r
+    "clamp.config.sdc.hostUrl": "https://sdchost:8443/",\r
+    "clamp.config.sdc.serviceUrl": "https://sdchost:8443/sdc/v1/catalog/services",\r
+    "clamp.config.sdc.serviceUsername": "clamp",\r
+    "clamp.config.sdc.servicePassword": "b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981",\r
+    "clamp.config.dcae.inventory.url": "http://dcaegen2.host:8080",\r
+    "clamp.config.dcae.dispatcher.url": "http://dcaegen2.host:8080",\r
+    "clamp.config.policy.pdpUrl1": "https://policy-pdp.host:9091/pdp/ , testpdp, alpha123",\r
+    "clamp.config.policy.pdpUrl2": "https://policy-pdp.host:9091/pdp/ , testpdp, alpha123",\r
+    "clamp.config.policy.papUrl": "https://policy-pap.host:8443/pap/ , testpap, alpha123",\r
+    "clamp.config.policy.clientKey": "5CE79532B3A2CB4D132FC0C04BF916A7"\r
+    "clamp.config.files.sdcController":"file:/opt/clamp/config/sdc-controllers-config.json"\r
 }\r
 ```\r
+### SDC-Controllers config\r
 \r
-OR \r
+This file is a JSON that must be specified to Spring config, here is an example:\r
 \r
 ```json\r
 {\r
-    "spring": \r
-    {\r
-        "datasource": \r
-        {\r
-            "camunda": \r
-            {\r
-                "url": "jdbc:mysql://anotherDB.onap.org:3306/camundabpm?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",\r
-                "username": "admin",\r
-                "password": "password"\r
-            },\r
-\r
-            "cldsdb": \r
-            {\r
-                "url": "jdbc:mysql://anotherDB.onap.org:3306/cldsdb4?verifyServerCertificate=false&useSSL=false&requireSSL=false&autoReconnect=true",\r
-                "username": "admin",\r
-                "password": "password"\r
-            }\r
-        }\r
+  "sdc-connections":{\r
+    "sdc-controller1":{\r
+        "user": "User1",\r
+        "consumerGroup": "consumerGroup1",\r
+        "consumerId": "consumerId1",\r
+        "environmentName": "environmentName1",\r
+        "sdcAddress": "sdc.api.simpledemo.onap.org:8080",\r
+        "password": "bb3871669d893c7fb8aaacda31b77b4f537E67A081C2726889548ED7BC4C2DE6",\r
+        "pollingInterval":10,\r
+        "pollingTimeout":30,\r
+        "messageBusAddresses":["localhost"]\r
+    },\r
+     "sdc-controller2":{\r
+        "user": "User2",\r
+        "consumerGroup": "consumerGroup2",\r
+        "consumerId": "consumerId2",\r
+        "environmentName": "environmentName2",\r
+        "sdcAddress": "sdc.api.simpledemo.onap.org:8080",\r
+        "password": "bb3871669d893c7fb8aaacda31b77b4f537E67A081C2726889548ED7BC4C2DE6",\r
+        "pollingInterval":10,\r
+        "pollingTimeout":30,\r
+        "messageBusAddresses":["localhost"]\r
     }\r
+  }\r
 }\r
-\r
 ```\r
+Multiple controllers can be configured so that Clamp is able to receive the notifications from different SDC servers.\r
+Each Clamp existing in a cluster should have different consumerGroup and consumerId so that they can each consume the SDC notification.\r
+The environmentName is normally the Dmaap Topic used by SDC. \r
+If the sdcAddress is not specified or not available (connection failure) the messageBusAddresses will be used (Dmaap servers) \r
 \r
 ### Docker-compose\r
 \r