blob: 6a2d68a2af68d03cb8fe23b1c3ecf5fe4ce7b37c [file] [log] [blame]
PatrikBuhr18fddb82021-09-15 15:43:53 +02001spring:
2 profiles:
3 active: prod
4 main:
5 allow-bean-definition-overriding: true
6 aop:
7 auto: false
8management:
9 endpoints:
10 web:
11 exposure:
12 # Enabling of springboot actuator features. See springboot documentation.
13 include: "loggers,logfile,health,info,metrics,threaddump,heapdump"
PatrikBuhr960e66a2021-10-26 09:46:11 +020014springdoc:
15 show-actuator: true
PatrikBuhr18fddb82021-09-15 15:43:53 +020016logging:
17 # Configuration of logging
18 level:
19 ROOT: ERROR
20 org.springframework: ERROR
21 org.springframework.data: ERROR
22 org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR
23 org.oran.dmaapadapter: INFO
24 file:
25 name: /var/log/dmaap-adaptor-service/application.log
26server:
27 # Configuration of the HTTP/REST server. The parameters are defined and handeled by the springboot framework.
28 # See springboot documentation.
29 port : 8435
30 http-port: 8084
31 ssl:
32 key-store-type: JKS
33 key-store-password: policy_agent
34 key-store: /opt/app/dmaap-adaptor-service/etc/cert/keystore.jks
35 key-password: policy_agent
36 key-alias: policy_agent
37app:
38 webclient:
39 # Configuration of the trust store used for the HTTP client (outgoing requests)
40 # The file location and the password for the truststore is only relevant if trust-store-used == true
41 # Note that the same keystore as for the server is used.
42 trust-store-used: false
43 trust-store-password: policy_agent
44 trust-store: /opt/app/dmaap-adaptor-service/etc/cert/truststore.jks
45 # Configuration of usage of HTTP Proxy for the southbound accesses.
46 # The HTTP proxy (if configured) will only be used for accessing NearRT RIC:s
47 http.proxy-host:
48 http.proxy-port: 0
PatrikBuhr18fddb82021-09-15 15:43:53 +020049 ecs-base-url: https://localhost:8434
50 # Location of the component configuration file. The file will only be used if the Consul database is not used;
51 # configuration from the Consul will override the file.
52 configuration-filepath: /opt/app/dmaap-adaptor-service/data/application_configuration.json
53 dmaap-base-url: http://dradmin:dradmin@localhost:2222
PatrikBuhrb2d63392021-11-05 14:56:19 +010054 # The url used to adress this component. This is used as a callback url sent to other components.
PatrikBuhr18fddb82021-09-15 15:43:53 +020055 dmaap-adapter-base-url: https://localhost:8435
PatrikBuhrb2d63392021-11-05 14:56:19 +010056 # KAFKA boostrap server. This is only needed if there are Information Types that uses a kafkaInputTopic
57 kafka:
58 bootstrap-servers: localhost:9092
PatrikBuhr18fddb82021-09-15 15:43:53 +020059