diff options
author | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2019-03-21 09:10:11 +0100 |
---|---|---|
committer | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2019-03-21 09:13:51 +0100 |
commit | d418dd43e7812ea2cdebf188bf5ab51a997df90c (patch) | |
tree | 60c33ac48330cca76bf8379ec5ed6fa48eac3e22 /development/configuration/base.json | |
parent | 30afcb56b0c6c4529fdaf68d7b061eee44d68d16 (diff) |
Include basic configuration in Docker image
Makes the collector start out of the box, even without valid CBS
configuration.
Note: the basic configuration will need to be changed later.
Issue-ID: DCAEGEN2-1340
Change-Id: I3c2b502f253677e78a4f4990002e683613b8869e
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Diffstat (limited to 'development/configuration/base.json')
-rw-r--r-- | development/configuration/base.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/development/configuration/base.json b/development/configuration/base.json new file mode 100644 index 00000000..5233f02c --- /dev/null +++ b/development/configuration/base.json @@ -0,0 +1,33 @@ +{ + "logLevel": "DEBUG", + "server": { + "listenPort": 6061, + "idleTimeoutSec": 60, + "maxPayloadSizeBytes": 1048576 + }, + "cbs": { + "firstRequestDelaySec": 10, + "requestIntervalSec": 5 + }, + "security": { + "keys": { + "keyStoreFile": "/etc/ves-hv/ssl/server.p12", + "keyStorePassword": "onaponap", + "trustStoreFile": "/etc/ves-hv/ssl/trust.p12", + "trustStorePassword": "onaponap" + } + }, + "collector": { + "dummyMode": false, + "maxRequestSizeBytes": 1048576, + "kafkaServers": [ + "message-router-kafka:9092" + ], + "routing": [ + { + "fromDomain": "perf3gpp", + "toTopic": "HV_VES_PERF3GPP" + } + ] + } +}
\ No newline at end of file |