blob: e23b8dd84eaff6e5a437a5052ee926760c3d1d23 [file] [log] [blame]
Lathish2d117332021-03-11 16:29:34 +00001 # ========================LICENSE_START=================================
2 # Copyright (C) 2021 Nordix Foundation. All rights reserved.
3 # ======================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 # ========================LICENSE_END===================================
PatrikBuhrf22e6f62021-03-16 16:55:05 +010016spring:
17 profiles:
18 active: prod
19 main:
20 allow-bean-definition-overriding: true
21 aop:
22 auto: false
Lathish2d117332021-03-11 16:29:34 +000023management:
24 endpoints:
25 web:
26 exposure:
27 include: "loggers,logfile,health,info,metrics,threaddump,heapdump"
28server:
PatrikBuhr42877762021-03-15 16:37:47 +010029 # Configuration of the HTTP/REST server. The parameters are defined and handeled by the springboot framework.
30 # See springboot documentation.
Lathish2d117332021-03-11 16:29:34 +000031 port : 8080
PatrikBuhr55f00b62021-03-12 15:41:00 +010032 http-port: 8083
33 ssl:
34 key-store-type: JKS
35 key-store-password: policy_agent
PatrikBuhr42877762021-03-15 16:37:47 +010036 key-store: /opt/app/rapp-manager/etc/cert/keystore.jks
PatrikBuhr55f00b62021-03-12 15:41:00 +010037 key-password: policy_agent
38 key-alias: policy_agent
Lathish2d117332021-03-11 16:29:34 +000039logging:
PatrikBuhr42877762021-03-15 16:37:47 +010040 # Configuration of logging
Lathish2d117332021-03-11 16:29:34 +000041 level:
42 ROOT: INFO
PatrikBuhr42877762021-03-15 16:37:47 +010043 org.springframework: ERROR
44 org.springframework.data: ERROR
45 org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR
PatrikBuhrae718662021-03-19 12:49:40 +010046 org.oransc.rappmanager: DEBUG
PatrikBuhr42877762021-03-15 16:37:47 +010047 file:
48 name: /var/log/rapp-manager/application.log
Lathish2d117332021-03-11 16:29:34 +000049app:
50 basepath: https://kubernetes.docker.internal:6443
51 certpath: /opt/app/rapp-manager/cert/ca.crt
52 tokenpath: /opt/app/rapp-manager/cert/token.txt
53 chartregistry: http://localhost:30081
PatrikBuhr55f00b62021-03-12 15:41:00 +010054 webclient:
55 # Configuration of the trust store used for the HTTP client (outgoing requests)
56 # The file location and the password for the truststore is only relevant if trust-store-used == true
57 # Note that the same keystore as for the server is used.
58 trust-store-used: false
59 trust-store-password: policy_agent
PatrikBuhr42877762021-03-15 16:37:47 +010060 trust-store: /opt/app/rapp-manager/etc/cert/truststore.jks
PatrikBuhr55f00b62021-03-12 15:41:00 +010061 # Configuration of usage of HTTP Proxy for the southbound accesses.
62 # The HTTP proxy (if configured) will only be used for accessing NearRT RIC:s
63 http.proxy-host:
PatrikBuhrf22e6f62021-03-16 16:55:05 +010064 http.proxy-port: 0
65 vardata-directory: /var/rapp-manager
PatrikBuhr55f00b62021-03-12 15:41:00 +010066