Fix driver startup in OOM
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / deployment / src / main / resources / application.properties
1 ###############################################################################
2 # Copyright 2016, Nokia Corporation
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 ###############################################################################
16
17 server.error.whitelabel.enabled=false
18
19 ###############################################################################
20 # Begin of mandatory properties                                               #
21 ###############################################################################
22
23 ###############################################################################
24 # The following section contains the variables set during container creation  #
25 #   - all values must be replaced with non sample data                        #
26 ###############################################################################
27
28 # the IP address of the server reported to the micro service bus
29 driverMsbExternalIp=127.0.0.1
30 # the IP address of the server reported to the VNFM
31 driverVnfmExternalIp=127.0.0.1
32 # the identifier of the VNFM in A&AI external system registry
33 vnfmId=5e65fe25-bdad-46dc-bba8-b7878fcee264
34
35 ###############################################################################
36 # The following section holds the default valued that may be changed
37 ###############################################################################
38 # The TCP port of the server
39 server.port=8089
40 # The port on which the service is visible from external systems
41 externalPort=8089
42 # the base path of the server
43 server.context-path=
44 # the IP address to which the erver binds to
45 server.address=0.0.0.0
46 # the IP address of the message bus
47 messageBusIp=127.0.0.1
48 # the TCP port of the message bus
49 messageBusPort=80
50 # skip hostname verification during SSL on CBAM LCN, LCM and authorization interface
51 skipHostnameVerification=true
52 # skip certificate verification during SSL on CBAM LCN, LCM and authorization interface
53 skipCertificateVerification=true
54 # the collection of trusted certificates for SSL on CBAM LCN, LCM and authorization interface
55 # in PEM format encoded in BASE64 to a single line
56 trustedCertificates=
57 #skip LCN subscription from VNFM
58 skipLcnSubscription=false
59 #skip self registration in MSB
60 skipSelfRegistration=false
61 ###############################################################################
62 # Configuration parameters for direct integration
63 ###############################################################################
64 # skip hostname verification during SSL on CBAM LCN, LCM and authorization interface
65 skipHostnameVerificationForAai=true
66 # skip certificate verification during SSL on CBAM LCN, LCM and authorization interface
67 skipCertificateVerificationForAai=true
68 # the collection of trusted certificates for SSL on CBAM LCN, LCM and authorization interface
69 # in PEM format encoded in BASE64 to a single line
70 trustedCertificatesForAai=
71 #The username to access AAI
72 aaiUsername=AAI
73 #The password to access AAI
74 aaiPassword=AAI
75 #The username to access SDC
76 sdcUsername=SDC
77 #The password to access SDC
78 sdcPassword=SDC
79
80 ###############################################################################
81 # End of mandatory properties for driver                                      #
82 ###############################################################################
83 ipMap=
84 vnfmInfoCacheEvictionInMs=600000
85
86 ## for logging begin ##
87 com.fasterxml.jackson.core=jackson-databind
88 logging.level.org.springframework=INFO
89 logging.level.org.hibernate=OFF
90 logging.level.org.springframework.web=DEBUG
91 ## for logging end ##