diff options
author | Sirisha_Manchikanti <sirisha.manchikanti@est.tech> | 2021-06-08 09:28:21 +0100 |
---|---|---|
committer | Sirisha_Manchikanti <sirisha.manchikanti@est.tech> | 2021-06-22 15:12:05 +0100 |
commit | 4d0a1d766e645046a9bcbe3c0dbeb59d82fd2fa3 (patch) | |
tree | 27738876ee1a34e162cb866561fd3477e64a02bb /csit/config/clamp/ClRuntimeParameters.json | |
parent | 3c231ae4fd843f56eb814133221dcd5595ccabb7 (diff) |
Add CSIT for clamp controlloop
Add CSIT testcases, scripts and a seperate docker-compose file for
integration testing between controlloop components, this involves
integration between Mariadb, Dmaap, ControlLoop-Runtime,
Policy-Participant, Policy-API and DCAE-Participant docker images.
Issue-ID: POLICY-3217
Signed-off-by: Sirisha_Manchikanti <sirisha.manchikanti@est.tech>
Change-Id: Id7cb1451afc4331b4ed1ad1ac6c2528a747eaaa0
Diffstat (limited to 'csit/config/clamp/ClRuntimeParameters.json')
-rw-r--r-- | csit/config/clamp/ClRuntimeParameters.json | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/csit/config/clamp/ClRuntimeParameters.json b/csit/config/clamp/ClRuntimeParameters.json new file mode 100644 index 00000000..f73899fb --- /dev/null +++ b/csit/config/clamp/ClRuntimeParameters.json @@ -0,0 +1,56 @@ +{ + "name": "ControlLoopRuntimeGroup", + "restServerParameters": { + "host": "0.0.0.0", + "port": 6970, + "userName": "healthcheck", + "password": "zb!XztG34", + "https": false, + "aaf": false + }, + "participantParameters": { + "heartBeatMs": 120000, + "updateParameters": { + "maxRetryCount": 1, + "maxWaitMs": 30000 + }, + "stateChangeParameters": { + "maxRetryCount": 1, + "maxWaitMs": 30000 + } + }, + "databaseProviderParameters": { + "name": "PolicyProviderParameterGroup", + "implementation": "org.onap.policy.models.provider.impl.DatabasePolicyModelsProviderImpl", + "databaseDriver": "org.mariadb.jdbc.Driver", + "databaseUrl": "jdbc:mariadb://mariadb:3306/controlloop", + "databaseUser": "policy_user", + "databasePassword": "policy_user", + "persistenceUnit": "CommissioningMariaDb" + }, + "topicParameterGroup": { + "topicSources": [ + { + "topic": "POLICY-CLRUNTIME-PARTICIPANT", + "servers" : [ "message-router" ], + "topicCommInfrastructure" : "dmaap", + "useHttps" : true, + "fetchTimeout": 15000 + } + ], + "topicSinks": [ + { + "topic": "POLICY-CLRUNTIME-PARTICIPANT", + "servers" : [ "message-router" ], + "topicCommInfrastructure" : "dmaap", + "useHttps" : true + }, + { + "topic": "POLICY-NOTIFICATION", + "servers" : [ "message-router" ], + "topicCommInfrastructure" : "dmaap", + "useHttps" : true + } + ] + } +} |