diff options
author | 2019-03-21 10:50:44 +0200 | |
---|---|---|
committer | 2019-03-22 13:11:10 +0200 | |
commit | d860357fe6481107f593a40163839f757102836d (patch) | |
tree | b93f0e15096cea868e0a2c23605ac6f03b6f90d4 /components/bbs-event-processor/src/main/resources/application.yml | |
parent | 82fe4e29ff6c0b48fe15d88b1fca882292e6af43 (diff) |
BBS use case event processor microservice code
BBS event processor code handling PNF-relocation internal events from PRH
and CPE authentication events raised by external Edge SDN M&C entities onto
ONAP platform
Change-Id: Icd2077dbe43192621228e07d88a01d65332262db
Issue-ID: DCAEGEN2-1354
Signed-off-by: Stavros Kanarakis <stavros.kanarakis@nokia.com>
Diffstat (limited to 'components/bbs-event-processor/src/main/resources/application.yml')
-rw-r--r-- | components/bbs-event-processor/src/main/resources/application.yml | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/components/bbs-event-processor/src/main/resources/application.yml b/components/bbs-event-processor/src/main/resources/application.yml new file mode 100644 index 00000000..c9820ebf --- /dev/null +++ b/components/bbs-event-processor/src/main/resources/application.yml @@ -0,0 +1,73 @@ +spring: + profiles: + active: production +server: + port: 8100 +configs: + dmaap: + consumer: + re-registration: + dmaapHostName: localhost + dmaapPortNumber: 2222 + dmaapTopicName: /events/unauthenticated.PNF_Update + dmaapProtocol: http + dmaapContentType: application/json + consumerId: c12 + consumerGroup: OpenDcae-c12 + timeoutMs: -1 + messageLimit: 1 + cpe-authentication: + dmaapHostName: localhost + dmaapPortNumber: 2222 + dmaapTopicName: /events/unauthenticated.CPE_Authentication + dmaapProtocol: http + dmaapContentType: application/json + consumerId: c12 + consumerGroup: OpenDcae-c12 + timeoutMs: -1 + messageLimit: 1 + producer: + dmaapHostName: localhost + dmaapPortNumber: 2223 + dmaapTopicName: /events/unauthenticated.DCAE_CL_OUTPUT + dmaapProtocol: http + dmaapContentType: application/json + aai: + client: + aaiHost: localhost + aaiPort: 8080 + aaiProtocol: https + aaiUserName: AAI + aaiUserPassword: AAI + aaiIgnoreSslCertificateErrors: true + aaiHeaders: + X-FromAppId: bbs + X-TransactionId: 9999 + Accept: application/json + Real-Time: true + Content-Type: application/json + security: + trustStorePath: change it + trustStorePasswordPath: change it + keyStorePath: change it + keyStorePasswordPath: change it + enableAaiCertAuth: false + enableDmaapCertAuth: false + application: + pipelinesPollingIntervalSec: 30 + pipelinesTimeoutSec: 15 + re-registration: + policyScope: policyScope + clControlName: controlName + cpe-authentication: + policyScope: policyScope + clControlName: controlName +logging: + level: + ROOT: ERROR + org.onap.bbs: INFO + org.onap.dcaegen2: WARN + reactor.ipc.netty.http.client: WARN + org.springframework: ERROR + org.springframework.data: ERROR + org.springframework.web.reactive: WARN
\ No newline at end of file |