blob: f8b28efaf85a97115210ac0cc76fa825c5869da3 [file] [log] [blame]
jananib08a83ba2020-02-28 18:25:01 +05301#
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#/
20aai:
21 auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
22 endpoint: https://aai.onap:30233
23logging:
24 path: logs
25
26spring:
27 datasource:
jananib592366c2020-04-01 13:29:21 +053028 jdbc-url: jdbc:mariadb://${DB_HOST}:${DB_PORT}/requestdb
29 username: ${DB_USERNAME}
30 password: ${DB_PASSWORD}
jananib08a83ba2020-02-28 18:25:01 +053031 driver-class-name: org.mariadb.jdbc.Driver
jananib08a83ba2020-02-28 18:25:01 +053032 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
jananib592366c2020-04-01 13:29:21 +053039 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
jananib08a83ba2020-02-28 18:25:01 +053047server:
48 port: 8080
49 tomcat:
50 max-threads: 50
51
52mso:
53 key: 07a7159d3bf51a0e53be7a8f89699be7
54 site-name: localSite
55 logPath: ./logs/nssmf
jananib08a83ba2020-02-28 18:25:01 +053056 adapters:
57 requestDb:
58 endpoint: https://so-request-db-adapter.{{ include "common.namespace" . }}:8083
59 auth: Basic YnBlbDpwYXNzd29yZDEk
60
61#Actuator
62management:
63 security:
64 enabled: false
65 basic:
66 enabled: false