Change nexus values to properties
[appc.git] / appc-adapters / appc-rest-adapter / appc-rest-adapter-bundle / src / test / resources / org / openecomp / appc / default.properties
1 ###
2 # ============LICENSE_START=======================================================
3 # openECOMP : APP-C
4 # ================================================================================
5 # Copyright (C) 2017 AT&T Intellectual Property. All rights
6 #                                               reserved.
7 # ================================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11
12 #      http://www.apache.org/licenses/LICENSE-2.0
13
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 # ============LICENSE_END=========================================================
20 ###
21
22 #
23 # Default properties for the APP-C Provider Adapter
24 #
25 # -------------------------------------------------------------------------------------------------
26 #
27 # Define the name and path of any user-provided configuration (bootstrap) file that can be loaded 
28 # to supply configuration options 
29 org.openecomp.appc.bootstrap.file=appc.properties
30 org.openecomp.appc.bootstrap.path=/opt/openecomp/appc/data/properties,${user.home},.
31
32 appc.application.name=APPC
33
34 #
35 # Define the message resource bundle name to be loaded 
36 org.openecomp.appc.resources=org/openecomp/appc/i18n/MessageResources
37 #
38 # The name of the adapter.
39 org.openecomp.appc.provider.adaptor.name=org.openecomp.appc.appc_provider_adapter
40 #
41 # Set up the logging environment
42 #
43 org.openecomp.appc.logging.file=org/openecomp/appc/logback.xml
44 org.openecomp.appc.logging.path=${user.home};etc;../etc
45 org.openecomp.appc.logger=org.openecomp.appc
46 org.openecomp.appc.security.logger=org.openecomp.appc.security
47 #
48 # The minimum and maximum provider/tenant context pool sizes.  Min=1 means that as soon 
49 # as the provider/tenant is referenced a Context is opened and added to the pool.  Max=0 
50 # means that the upper bound on the pool is unbounded. 
51 org.openecomp.appc.provider.min.pool=1
52 org.openecomp.appc.provider.max.pool=0
53
54 #
55 # The following properties are used to configure the retry logic for connection to the 
56 # IaaS provider(s).  The retry delay property is the amount of time, in seconds, the
57 # application waits between retry attempts.  The retry limit is the number of retries
58 # that are allowed before the request is failed.
59 org.openecomp.appc.provider.retry.delay = 30
60 org.openecomp.appc.provider.retry.limit = 10
61
62 #
63 # The trusted hosts list for SSL access when a certificate is not provided.
64 #
65 provider.trusted.hosts=*
66 #
67 # The amount of time, in seconds, to wait for a server state change (start->stop, stop->start, etc).
68 # If the server does not change state to a valid state within the alloted time, the operation 
69 # fails.
70 org.openecomp.appc.server.state.change.timeout=300
71 #
72 # The amount of time to wait, in seconds, between subsequent polls to the OpenStack provider 
73 # to refresh the status of a resource we are waiting on.
74 #
75 org.openecomp.appc.openstack.poll.interval=20
76 #
77 # The connection information to connect to the provider we are using.  These properties 
78 # are "structured" properties, in that the name is a compound name, where the nodes 
79 # of the name can be ordered (1, 2, 3, ...).  All of the properties with the same ordinal
80 # position are defining the same entity.  For example, provider1.type and provider1.name 
81 # are defining the same provider, whereas provider2.name and provider2.type are defining
82 # the values for a different provider.  Any number of providers can be defined in this 
83 # way. 
84 #
85
86
87 ###                                                                                                                             ###
88 ### Properties commented out below provided in appc.properties  ###
89 ###                                                                                                                             ###
90
91 # Don't change these 2 right now since they are hard coded in the DG
92 #provider1.type=appc
93 #provider1.name=appc
94
95 #These you can change
96 #provider1.identity=appc
97 #provider1.tenant1.name=appc
98 #provider1.tenant1.userid=appc
99 #provider1.tenant1.password=appc
100
101 # After a change to the provider make sure to recheck these values with an api call to provider1.identity/tokens
102 test.expected-regions=1
103 test.expected-endpoints=1
104
105 #Your OpenStack IP
106 #test.ip=192.168.1.2
107 # Your OpenStack Platform's Keystone Port (default is 5000)
108 #test.port=5000
109 #test.tenantid=abcde12345fghijk6789lmnopq123rst
110 #test.vmid=abc12345-1234-5678-890a-abcdefg12345
111 # Port 8774 below is default port for OpenStack's Nova API Service
112 #test.url=http://192.168.1.2:8774/v2/abcde12345fghijk6789lmnopq123rst/servers/abc12345-1234-5678-890a-abcdefg12345
113