blob: 5684c46361a7c5832058948b0c8b54531b02e2c3 [file] [log] [blame]
elinuxhenrik02cb6012022-04-04 13:07:36 +02001#
2# ============LICENSE_START=======================================================
3# ONAP : ccsdk oran
4# ================================================================================
5# Copyright (C) 2020 Nordix Foundation. All rights reserved.
6# ================================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18#
19# SPDX-License-Identifier: Apache-2.0
20# ============LICENSE_END=========================================================
21#
22spring:
23 profiles:
24 active: prod
25 main:
26 allow-bean-definition-overriding: true
27 aop:
28 auto: false
29management:
30 endpoints:
31 web:
32 exposure:
33 # Enabling of springboot actuator features. See springboot documentation.
34 include: "loggers,logfile,health,info,metrics,threaddump,heapdump"
35springdoc:
36 show-actuator: true
37logging:
38 # Configuration of logging
39 level:
40 ROOT: ERROR
41 org.springframework: ERROR
42 org.springframework.data: ERROR
43 org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR
44 org.onap.ccsdk.oran.a1policymanagementservice: INFO
45 # org.onap.ccsdk.oran.a1policymanagementservice.tasks: TRACE
46 file:
47 name: /var/log/policy-agent/application.log
48server:
49 # Configuration of the HTTP/REST server. The parameters are defined and handeled by the springboot framework.
50 # See springboot documentation.
51 port : 8433
52 http-port: 8081
53 ssl:
54 key-store-type: JKS
55 key-store-password: policy_agent
56 key-store: /opt/app/policy-agent/etc/cert/keystore.jks
57 key-password: policy_agent
58 key-alias: policy_agent
59app:
60 # Location of the component configuration file.
61 filepath: /opt/app/policy-agent/data/application_configuration.json
62 webclient:
63 # Configuration of the trust store used for the HTTP client (outgoing requests)
64 # The file location and the password for the truststore is only relevant if trust-store-used == true
65 # Note that the same keystore as for the server is used.
66 trust-store-used: false
67 trust-store-password: policy_agent
68 trust-store: /opt/app/policy-agent/etc/cert/truststore.jks
69 # Configuration of usage of HTTP Proxy for the southbound accesses.
70 # The HTTP proxy (if configured) will only be used for accessing NearRT RIC:s
71 # proxy-type can be either HTTP, SOCKS4 or SOCKS5
72 http.proxy-host:
73 http.proxy-port: 0
74 http.proxy-type: HTTP
75 # path where the service can store data
76 vardata-directory: /var/policy-management-service
77 # the config-file-schema-path referres to a location in the jar file. If this property is empty or missing,
78 # no schema validation will be executed.
79 config-file-schema-path: /application_configuration_schema.json
80