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