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/DcaeParticipantParameters.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/DcaeParticipantParameters.json')
-rw-r--r-- | csit/config/clamp/DcaeParticipantParameters.json | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/csit/config/clamp/DcaeParticipantParameters.json b/csit/config/clamp/DcaeParticipantParameters.json new file mode 100644 index 00000000..e0f1ba9a --- /dev/null +++ b/csit/config/clamp/DcaeParticipantParameters.json @@ -0,0 +1,65 @@ +{ + "name": "ControlLoopParticipantDcae", + "clampClientParameters": { + "clientName": "Clamp", + "hostname": "0.0.0.0", + "port": 8443, + "userName": "admin", + "password": "password", + "useHttps": true + }, + "consulClientParameters": { + "clientName": "Consul", + "hostname": "consul", + "port": 31321, + "userName": "admin", + "password": "password", + "useHttps": false + }, + "intermediaryParameters": { + "name": "Participant parameters", + "reportingTimeInterval": 120000, + "description": "Participant Description", + "participantId": { + "name": "DCAEParticipant0", + "version": "1.0.0" + }, + "participantType": { + "name": "org.onap.dcae.controlloop.DCAEMicroserviceControlLoopParticipant", + "version": "2.3.4" + }, + "clampControlLoopTopics": { + "topicSources": [ + { + "topic": "POLICY-CLRUNTIME-PARTICIPANT", + "servers" : [ "message-router" ], + "topicCommInfrastructure" : "dmaap", + "useHttps" : true + } + ], + "topicSinks": [ + { + "topic": "POLICY-CLRUNTIME-PARTICIPANT", + "servers" : [ "message-router" ], + "topicCommInfrastructure" : "dmaap", + "useHttps" : true + }, + { + "topic": "POLICY-NOTIFICATION", + "servers" : [ "message-router" ], + "topicCommInfrastructure" : "dmaap", + "useHttps" : true + } + ] + } + }, + "databaseProviderParameters": { + "name": "PolicyProviderParameterGroup", + "implementation": "org.onap.policy.models.provider.impl.DatabasePolicyModelsProviderImpl", + "databaseDriver": "org.mariadb.jdbc.Driver", + "databaseUrl": "jdbc:mariadb://mariadb:3306/policyadmin", + "databaseUser": "policy_user", + "databasePassword": "policy_user", + "persistenceUnit": "PolicyMariaDb" + } +} |