blob: 303d63d4a241bf6e547146166b9af0dd4de779f7 [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
jananibf2b14042020-04-07 11:19:20 +053047
jananib08a83ba2020-02-28 18:25:01 +053048server:
49 port: 8080
50 tomcat:
51 max-threads: 50
52
53mso:
54 key: 07a7159d3bf51a0e53be7a8f89699be7
55 site-name: localSite
56 logPath: ./logs/nssmf
jananib08a83ba2020-02-28 18:25:01 +053057 adapters:
58 requestDb:
59 endpoint: https://so-request-db-adapter.{{ include "common.namespace" . }}:8083
60 auth: Basic YnBlbDpwYXNzd29yZDEk
61
62#Actuator
63management:
jananibf2b14042020-04-07 11:19:20 +053064 endpoints:
65 web:
66 base-path: /manage
67 exposure:
68 include: "*"
69 metrics:
70 se-global-registry: false
71 export:
72 prometheus:
73 enabled: true # Whether exporting of metrics to Prometheus is enabled.
74 step: 1m # Step size (i.e. reporting frequency) to use.