diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2024-06-11 16:51:57 +0000 |
---|---|---|
committer | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2024-06-12 12:53:45 +0000 |
commit | 7bfa0fdd418317bbe90b569c7daa787f17e656bc (patch) | |
tree | da31ef489ee993fb48e8bf230abe5076df58da9a /compose/config/clamp/SimulatorParticipantParameters.yaml | |
parent | 59c25aa2599da95a52baffe261065f84f2bf7e20 (diff) |
Add sync topic support in docker/K8s deployment
Issue-ID: POLICY-5031
Change-Id: I5ae1fe07d90744f992a3bce2853ab26e39218cd7
Signed-off-by: zrrmmua <ramesh.murugan.iyer@est.tech>
Diffstat (limited to 'compose/config/clamp/SimulatorParticipantParameters.yaml')
-rw-r--r-- | compose/config/clamp/SimulatorParticipantParameters.yaml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/compose/config/clamp/SimulatorParticipantParameters.yaml b/compose/config/clamp/SimulatorParticipantParameters.yaml index acc1db66..41c30e32 100644 --- a/compose/config/clamp/SimulatorParticipantParameters.yaml +++ b/compose/config/clamp/SimulatorParticipantParameters.yaml @@ -17,16 +17,25 @@ participant: reportingTimeIntervalMs: 120000 description: Participant Description participantId: ${participantId:101c62b3-8918-41b9-a747-d21eb79c6c90} + topics: + operationTopic: policy-acruntime-participant + syncTopic: acm-ppnt-sync clampAutomationCompositionTopics: topicSources: - - topic: policy-acruntime-participant + - topic: ${participant.intermediaryParameters.topics.operationTopic} + servers: + - ${topicServer:kafka:9092} + topicCommInfrastructure: kafka + fetchTimeout: 15000 + useHttps: false + - topic: ${participant.intermediaryParameters.topics.syncTopic} servers: - ${topicServer:kafka:9092} topicCommInfrastructure: kafka fetchTimeout: 15000 useHttps: false topicSinks: - - topic: policy-acruntime-participant + - topic: ${participant.intermediaryParameters.topics.operationTopic} servers: - ${topicServer:kafka:9092} topicCommInfrastructure: kafka |