diff options
author | Jorge Hernandez <jorge.hernandez-herrero@att.com> | 2019-02-19 21:17:15 -0600 |
---|---|---|
committer | Jorge Hernandez <jorge.hernandez-herrero@att.com> | 2019-02-21 11:44:07 -0600 |
commit | d914823eb7a992cd3410072970a2643c7d0c432c (patch) | |
tree | 6235a1d4e7cabdc55cfd081c8e304b578d3752c9 /feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties | |
parent | bf69c619c8c5a660f6fde044dc9aa8304ba12982 (diff) |
Moving hard install config to environment vars
Change-Id: I01e0cf2e2399ec81337961e0a2b3a349c34f55c4
Issue-ID: POLICY-1517
Signed-off-by: Jorge Hernandez <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties')
-rw-r--r-- | feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties b/feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties index 9f8c804b..1d549855 100644 --- a/feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties +++ b/feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties @@ -2,7 +2,7 @@ # ============LICENSE_START======================================================= # feature-pooling-dmaap # ================================================================================ -# Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -77,20 +77,20 @@ extractor.requestId.org.onap.policy.controlloop.VirtualControlLoopEvent=${reques # at the same time. pooling.amsterdam.enabled=true -pooling.amsterdam.topic=${{POOLING_TOPIC}} +pooling.amsterdam.topic=${env:POOLING_TOPIC} pooling.beijing.enabled=true -pooling.beijing.topic=${{POOLING_TOPIC}} +pooling.beijing.topic=${env:POOLING_TOPIC} # the list of sources and sinks should be identical -ueb.source.topics=${{POOLING_TOPIC}} -ueb.sink.topics=${{POOLING_TOPIC}} +ueb.source.topics=${env:POOLING_TOPIC} +ueb.sink.topics=${env:POOLING_TOPIC} -ueb.source.topics.${{POOLING_TOPIC}}.servers=${{DMAAP_SERVERS}} +ueb.source.topics.${{POOLING_TOPIC}}.servers=${env:DMAAP_SERVERS} ueb.source.topics.${{POOLING_TOPIC}}.apiKey= ueb.source.topics.${{POOLING_TOPIC}}.apiSecret= -ueb.sink.topics.${{POOLING_TOPIC}}.servers=${{DMAAP_SERVERS}} +ueb.sink.topics.${{POOLING_TOPIC}}.servers=${env:DMAAP_SERVERS} ueb.sink.topics.${{POOLING_TOPIC}}.apiKey= ueb.sink.topics.${{POOLING_TOPIC}}.apiSecret= |