Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | # will be used as entry in DB to say SITE OFF/ON for healthcheck |
| 2 | # MSO Properties go here |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 3 | cloud_config: |
| 4 | identity_services: |
| 5 | MT_KEYSTONE: |
| 6 | identity_url: "http://localhost:${wiremock.server.port}/v2.0" |
| 7 | mso_id: "john" |
| 8 | mso_pass: "313DECE408AF7759D442D7B06DD9A6AA" |
| 9 | admin_tenant: "admin" |
| 10 | member_role: "_member_" |
| 11 | tenant_metadata: false |
| 12 | identity_server_type: "KEYSTONE" |
| 13 | identity_authentication_type: "USERNAME_PASSWORD" |
| 14 | cloud_sites: |
| 15 | regionOne: |
| 16 | region_id: "regionOne" |
| 17 | clli: "MT2" |
| 18 | aic_version: "2.5" |
| 19 | identity_service_id: "MT_KEYSTONE" |
| 20 | DEFAULT: |
| 21 | region_id: "" |
| 22 | clli: "MTN6" |
| 23 | aic_version: "3.0" |
| 24 | identity_service_id: "ORDM3" |
Kalkere Ramesh, Sharan (sk720x) | e412668 | 2018-12-05 15:17:08 -0500 | [diff] [blame] | 25 | org: |
| 26 | onap: |
| 27 | so: |
| 28 | adapters: |
| 29 | po: |
| 30 | retryCodes: "504" |
| 31 | retryDelay: "5" |
| 32 | retryCount: "3" |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 33 | tenant: |
| 34 | tenant_description: "ECOMP Tenant" |
| 35 | region_type: "single" |
| 36 | user_role: "admin" |
| 37 | success_status_string: "Success" |
| 38 | no_regions_status_string: "no regions" |
| 39 | orm_request_path: "/v1/orm/customers/" |
| 40 | x_aic_orm_client_string: "ECOMP-MSO" |
| 41 | keystone_url_version: "/v2.0" |
| 42 | keystone_reg_ex: "/[vV][0-9]" |
| 43 | orm_url_replace_this: "8080" |
| 44 | orm_url_replace_with_this: "7080" |
| 45 | quota_value: "10" |
| 46 | set_default_quota: "false" |
Benjamin, Max (mb388a) | a81aef2 | 2018-08-13 09:48:57 -0400 | [diff] [blame] | 47 | |
| 48 | server-port: 8080 |
| 49 | ssl-enable: false |
| 50 | tomcat: |
| 51 | max-threads: 50 |
| 52 | mso: |
| 53 | logPath: logs |
Eric Multanen | a0b9575 | 2019-03-30 02:20:01 -0700 | [diff] [blame] | 54 | msb-ip: localhost |
| 55 | msb-port: ${wiremock.server.port} |
Benjamin, Max (mb388a) | a81aef2 | 2018-08-13 09:48:57 -0400 | [diff] [blame] | 56 | catalog: |
| 57 | db: |
| 58 | spring: |
| 59 | endpoint: http://localhost:${wiremock.server.port} |
| 60 | db: |
| 61 | auth: Basic YnBlbDptc28tZGItMTUwNyE= |
| 62 | site-name: localDevEnv |
| 63 | async: |
| 64 | core-pool-size: 50 |
| 65 | max-pool-size: 50 |
| 66 | queue-capacity: 500 |
| 67 | spring: |
| 68 | datasource: |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 69 | jdbc-url: jdbc:mariadb://localhost:3307/catalogdb |
Benjamin, Max (mb388a) | a81aef2 | 2018-08-13 09:48:57 -0400 | [diff] [blame] | 70 | username: root |
| 71 | password: password |
| 72 | driver-class-name: org.mariadb.jdbc.Driver |
| 73 | initialize: true |
| 74 | initialization-mode: never |
| 75 | jpa: |
| 76 | generate-ddl: false |
| 77 | show-sql: false |
| 78 | hibernate: |
| 79 | ddl-auto: none |
| 80 | naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy |
| 81 | enable-lazy-load-no-trans: true |
| 82 | database-platform: org.hibernate.dialect.MySQL5InnoDBDialect |
| 83 | |
| 84 | mariaDB4j: |
| 85 | dataDir: |
| 86 | port: 3307 |
| 87 | databaseName: catalogdb |
| 88 | |
| 89 | |
| 90 | #Actuator |
| 91 | management: |
| 92 | endpoints: |
| 93 | enabled-by-default: false |
| 94 | endpoint: |
| 95 | info: |
Eric Multanen | a0b9575 | 2019-03-30 02:20:01 -0700 | [diff] [blame] | 96 | enabled: true |