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