summaryrefslogtreecommitdiffstats
path: root/nokiav2/deployment/src/main/resources/application.properties
diff options
context:
space:
mode:
Diffstat (limited to 'nokiav2/deployment/src/main/resources/application.properties')
-rw-r--r--nokiav2/deployment/src/main/resources/application.properties75
1 files changed, 75 insertions, 0 deletions
diff --git a/nokiav2/deployment/src/main/resources/application.properties b/nokiav2/deployment/src/main/resources/application.properties
new file mode 100644
index 00000000..c9c86a02
--- /dev/null
+++ b/nokiav2/deployment/src/main/resources/application.properties
@@ -0,0 +1,75 @@
+###############################################################################
+# Copyright 2016, Nokia Corporation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+###############################################################################
+server.error.whitelabel.enabled=false
+###############################################################################
+# Begining of mandatory properties #
+###############################################################################
+###############################################################################
+# The following section contains the variables set during container creation #
+# - all values must be replaced with non sample data #
+###############################################################################
+
+# the IP address of the server reported to the micro service bus
+driverMsbExternalIp=127.0.0.1
+# the IP address of the server reported to the VNFM
+driverVnfmExternalIp=127.0.0.1
+# the IP address of the message bus
+messageBusIp=127.0.0.1
+# the URL of the CBAM catalog service
+cbamCatalogUrl=https://127.0.0.1:443/api/catalog/adapter
+# the URL of the CBAM LCN service
+cbamLcnUrl=https://127.0.0.1:443/vnfm/lcn/v3
+# the URL of the CBAM authentication service
+cbamKeyCloakBaseUrl=https://127.0.0.1:443/auth
+# the username to be used for requesing a token on CBAM authorization interface
+cbamUsername=kukuUser
+# the password to be used for requesing a token on CBAM authorization interface
+cbamPassword=kukuPassword
+# the identifier of the VNFM in A&AI external system registry
+vnfmId=5e65fe25-bdad-46dc-bba8-b7878fcee264
+
+###############################################################################
+# The following section holds the default valued that may be chaged
+###############################################################################
+# The TCP port of the server
+server.port=8089
+# the base path of the server
+server.context-path=
+# the IP address to which the erver binds to
+server.address=0.0.0.0
+# the TCP port of the message bus
+messageBusPort=80
+# skip hostname verification during SSL on CBAM LCN, LCM and authorization interface
+skipHostnameVerification=true
+# skip certificate verification during SSL on CBAM LCN, LCM and authorization interface
+skipCertificateVerification=true
+# the collection of trusted certificates for SSL on CBAM LCN, LCM and authorization interface
+# in PEM format encoded in BASE64 to a single line
+trustedCertificates=
+
+###############################################################################
+# End of mandatory properties for driver #
+###############################################################################
+ipMap=
+vnfmInfoCacheEvictionInMs=600000
+
+## for logging begin ##
+com.fasterxml.jackson.core=jackson-databind
+#logging.file=${catalina.base}/logs/vfcadaptor.log
+logging.level.org.springframework=INFO
+logging.level.org.hibernate=OFF
+logging.level.org.springframework.web=DEBUG
+## for logging end ##