diff options
author | 2019-03-13 18:44:31 +0100 | |
---|---|---|
committer | 2019-03-20 14:20:03 +0100 | |
commit | 30afcb56b0c6c4529fdaf68d7b061eee44d68d16 (patch) | |
tree | 34ce26e44546033fa3572738e8ae59362783147a /development/configuration | |
parent | 189c70a48c24274fb7dd6cb910397a9a93233401 (diff) |
Remove environment variables and program arguments
- Move all command line program arguments to json file.
- Reorganize configuration classes and the way they are passed through application
- Implement HV VES configuration stream
- Create concrete configuration from partial one
- Modify main HV-VES server starting pipeline
Change-Id: I6cf874b6904ed768e4820b8132f5f760299c929e
Signed-off-by: Jakub Dudycz <jakub.dudycz@nokia.com>
Issue-ID: DCAEGEN2-1340
Diffstat (limited to 'development/configuration')
-rw-r--r-- | development/configuration/configuration.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/development/configuration/configuration.json b/development/configuration/configuration.json new file mode 100644 index 00000000..8e55cf39 --- /dev/null +++ b/development/configuration/configuration.json @@ -0,0 +1,34 @@ +{ + "logLevel": "DEBUG", + "server": { + "listenPort": 6061, + "idleTimeoutSec": 60, + "maxPayloadSizeBytes": 1048576 + }, + "cbs": { + "firstRequestDelaySec": 10, + "requestIntervalSec": 5 + }, + "security": { + "sslDisable": false, + "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 |