jananib | 08a83ba | 2020-02-28 18:25:01 +0530 | [diff] [blame] | 1 | # |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # ONAP - SO |
| 4 | # ================================================================================ |
| 5 | # Copyright (C) 2020 Huawei Technologies Co., Ltd. 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 |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 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. |
| 18 | # ============LICENSE_END========================================================= |
| 19 | #/ |
| 20 | aai: |
| 21 | auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586 |
| 22 | endpoint: https://aai.onap:30233 |
| 23 | logging: |
| 24 | path: logs |
| 25 | |
| 26 | spring: |
| 27 | datasource: |
jananib | 592366c | 2020-04-01 13:29:21 +0530 | [diff] [blame] | 28 | jdbc-url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/requestdb |
| 29 | username: ${DB_USERNAME} |
| 30 | password: ${DB_PASSWORD} |
jananib | 08a83ba | 2020-02-28 18:25:01 +0530 | [diff] [blame] | 31 | driver-class-name: org.mariadb.jdbc.Driver |
jananib | 08a83ba | 2020-02-28 18:25:01 +0530 | [diff] [blame] | 32 | jpa: |
| 33 | show-sql: false |
| 34 | hibernate: |
| 35 | dialect: org.hibernate.dialect.MySQL5Dialect |
| 36 | ddl-auto: validate |
| 37 | naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy |
| 38 | enable-lazy-load-no-trans: true |
jananib | 592366c | 2020-04-01 13:29:21 +0530 | [diff] [blame] | 39 | security: |
| 40 | usercredentials: |
| 41 | - username: bpel |
| 42 | password: '$2a$10$Fh9ffgPw2vnmsghsRD3ZauBL1aKXebigbq3BB1RPWtE62UDILsjke' |
| 43 | role: BPEL-Client |
| 44 | - username: mso_admin |
| 45 | password: '$2a$10$Fh9ffgPw2vnmsghsRD3ZauBL1aKXebigbq3BB1RPWtE62UDILsjke' |
| 46 | role: ACTUATOR |
jananib | 08a83ba | 2020-02-28 18:25:01 +0530 | [diff] [blame] | 47 | server: |
| 48 | port: 8080 |
| 49 | tomcat: |
| 50 | max-threads: 50 |
| 51 | |
| 52 | mso: |
| 53 | key: 07a7159d3bf51a0e53be7a8f89699be7 |
| 54 | site-name: localSite |
| 55 | logPath: ./logs/nssmf |
jananib | 08a83ba | 2020-02-28 18:25:01 +0530 | [diff] [blame] | 56 | adapters: |
| 57 | requestDb: |
| 58 | endpoint: https://so-request-db-adapter.{{ include "common.namespace" . }}:8083 |
| 59 | auth: Basic YnBlbDpwYXNzd29yZDEk |
| 60 | |
| 61 | #Actuator |
| 62 | management: |
| 63 | security: |
| 64 | enabled: false |
| 65 | basic: |
| 66 | enabled: false |