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