c91796a3d2a82971b90bc13d53a10834d1434987
[appc.git] / appc-adapters / appc-iaas-adapter / appc-iaas-adapter-bundle / src / main / resources / com / att / cdp / 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 - Configured for integration of CDP into APPC
27 #
28 #--------------------------------------------------------------------------------------------
29 # The path and file used to load configuration settings, if any 
30 com.att.cdp.bootstrap.path=${user.home},src/main/config,/etc/aft/scld/,/opt/app/aft/scld/etc/,/opt/app/aft/cdp/etc/,C:/Program Files/aft/scld/etc/,etc,../etc,. 
31 com.att.cdp.bootstrap.file=cdp.properties
32 # com.att.cdp.system.admins=
33 #
34 # AFT properties for lat/long/environment and platform 
35 #
36 AFT_LATITUDE=12.3456
37 AFT_LONGITUDE=-12.3456
38 AFT_ENVIRONMENT=AFT-ENVIRONMENT
39 SCLD_PLATFORM=OPEN-SOURCE
40 #
41 # The versions of CDP API, CDP itself, and the build number
42
43 API_VERSION=${version}
44 CDP_VERSION=${version}
45 CDP_BUILD=${buildNumber}
46 #
47 # The path to search for logging configuration document, and the name of the document 
48 #
49 com.att.cdp.logging.path=${user.home},src/main/config,etc,../etc,.
50 com.att.cdp.logging.file=logback.xml 
51 #
52 # The resource bundle base name to be loaded for message resources.  This property can be a comma delimited list of resources to be 
53 # loaded, allowing multiple resource bundles to be loaded simultaneously (for the same locale). 
54 #
55 com.att.cdp.resources=com/att/cdp/StrategyServiceMessages
56 #
57 # Logger names used in the application 
58 #
59 com.att.cdp.logger=org.openecomp.appc
60 com.att.cdp.security.logger=org.openecomp.appc.security
61 com.att.cdp.perf.logger=org.openecomp.appc.perf
62 com.att.cdp.gui.logger=org.openecomp.appc.gui
63 com.att.cdp.server.logger=org.openecomp.appc.server
64 com.att.cdp.coordinator.logger=org.openecomp.appc.coordinator
65 com.att.cdp.policy.logger=org.openecomp.appc.policy
66
67 #
68 # This property allows to 'simulate' SSH processes within engine.
69 # By default, it is set to 'false' - So that it allows to actually execute SSH process. If 'true', it will 'simulate' SSH processes
70 #
71 com.att.cdp.ssh.simulate=false
72 #
73 # These properties are used to specify the default stack metadata path and file names written and read on each server node
74 #
75 com.att.cdp.metadata.path=/etc/cdp/metadata
76 com.att.cdp.metadata.export.filename=stack.xml
77 com.att.cdp.metadata.import.filename=stack.xml
78 #
79 #Below properties are to specify minimum and maximum bootstrap time in minutes.
80 #These properties are ONLY supposed to be used in tandem with SSH simulation.(testing purpose)
81 com.att.cdp.ssh.simulate.minBootstrapTime=6
82 com.att.cdp.ssh.simulate.maxBootstrapTime=12
83 #
84 #
85 # These properties are used to configure the AAF security interface
86 #
87 #  com.att.cdp.aaf.connection.url = dme2 url to connect to aaf service
88 #  com.att.cdp.aaf.connection.timeout = connection timeout, in seconds
89 #  com.att.cdp.aaf.cache.flush = cache flush interval in minutes
90 #  com.att.cdp.aaf.cache.size = the maximum number of cache entries  
91 #  com.att.cdp.aaf.auth.principal = The principal id we use to authenticate ourself to AAF
92 #  com.att.cdp.aaf.auth.credentials = The credentials (password) we use to authenticate ourself to AAF  
93 #
94 com.att.cdp.aaf.connection.url=https://DME2SITE/service=com.att.authz.AuthorizationService/version=2.0/envContext=TEST/routeOffer=BAU_SE
95 com.att.cdp.aaf.connection.timeout=10
96 com.att.cdp.aaf.cache.flush=5
97 com.att.cdp.aaf.cache.size=400
98 com.att.cdp.aaf.auth.principal=emailaddress@example.com
99 com.att.cdp.aaf.auth.credentials=MyPassw0rd
100 #
101 # ----------------------------------------------------------------------------------------------------
102 # These properties are used to configure the operation of the StackBuilder engine
103 #
104 # maximum number of build manager threads in the thread pool 
105 com.att.cdp.engine.maxManagerPool=30
106 # max number of worker threads in the pool for use by workers 
107 com.att.cdp.engine.MaxWorkerPool=300
108
109 # max number of workers that can be created per build request (set to 1 to single-thread a build)
110 com.att.cdp.engine.maxWorkers=10
111 # Maximum amount of time to wait for a provider to complete any requested operation, in minutes.  Such
112 # as creating a server or a volume.
113 com.att.cdp.engine.maxWaitTime=15
114 #
115 # ----------------------------------------------------------------------------------------------------
116 # These properties are used to configure the managed node hostname generation/resolution process
117 #
118 com.att.cdp.managed.hostname.resolve.retry=3
119 # ----------------------------------------------------------------------------------------------------
120 #
121 # Cassandra Connection Configuration Properties
122 #
123 cassandra.userName=cassandra
124 cassandra.password=cassandra
125 #cassandra.dataCenter=
126 cassandra.hosts=127.0.0.1
127 cassandra.port=9042
128 cassandra.keyspace=cdp
129 cassandra.minPoolSize=8
130 cassandra.maxPoolSize=8
131 cassandra.readtimeout=180000
132 #
133 # Cassandra data Migration toggle
134 com.att.cdp.db.migration=true
135 com.att.cdp.db.update=true
136
137 #Default Values for Image Attributes Configuration.These SHOULD NOT be removed.
138 image.default.namepattern=.*
139 image.default.user=root
140 image.default.sudo=false
141
142 # ----------------------------------------------------------------------------------------------------
143 #
144 # The path OSSupport will search for OS configuration properties files
145 #
146 com.att.cdp.OSType.path=/etc/os/
147 # ----------------------------------------------------------------------------------------------------
148
149 # ----------------------------------------------------------------------------------------------------
150 #
151 # The properties used in ConnectivityBuilder
152 internet_url=www.google.com
153 ubuntu_sat_access_url=example.com
154 grm_server_url=example.com
155 #
156 # ----------------------------------------------------------------------------------------------------
157 com.att.cdp.ptr.cleanup=true
158
159 # ----------------------------------------------------------------------------------------------------
160 # The maximum amount of time in seconds that we should wait for input from the shell
161 com.att.cdp.ssh.timeout=1800