blob: 3252146bfae519f33cfed2d8bced6ad156de2ca1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
# will be used as entry in DB to say SITE OFF/ON for healthcheck
server:
port: 8080
tomcat:
max-threads: 50
ssl-enable: false
apih-healthcheck-urn: /ecomp/mso/healthcheck,/ecomp/mso/homing/healthcheck,/ecomp/mso/infra/healthcheck,/asdc/healthcheck,/dbadapters/healthcheck,/ecomp/mso/catalog/v2/healthcheck
jra-healthcheck-urn: /networks/rest/healthcheck,/adapters/rest/healthcheck,/vnfs/rest/healthcheck,/tenants/rest/healthcheck,/appc/rest/healthcheck,/workflows/messages/healthcheck
camunda-healthcheck-urn: /mso/healthcheck
apih-nodehealthcheck-urn: /ecomp/mso/infra/nodehealthcheck
jra-nodehealthcheck-urn: /adapters/rest/nodehealthcheck
camunda-nodehealthcheck-urn: /mso/nodehealthcheck
mso:
logPath: logs
site-name: mtanj
catalog:
db:
spring:
endpoint: "http://localhost:8080"
db:
auth: Basic YnBlbDptc28tZGItMTUwNyE=
config:
path: /src/main/resources/
infra:
default:
alacarte:
orchestrationUri: /mso/async/services/ALaCarteOrchestrator
recipeTimeout: 180
testApi: VNF_API
service:
macro:
default:
testApi: GR_API
apih:
homing:
sdna:
url: http://localhost:8089/
password: 4112B789E942B161228F7D5AFC654C0F
bpelURL: http://localhost:8080/
bpelAuth: 786864AA53D0DCD881AED1154230C0C3058D58B9339D2EFB6193A0F0D82530E1
camundaURL: http://localhost:8089/
camundaAuth: F8E9452B55DDE4CCE77547B0E748105C54CF5EF1351B4E2CBAABF2981EFE776D
async:
core-pool-size: 50
max-pool-size: 50
queue-capacity: 500
sdc:
client:
auth: F3473596C526938329DF877495B494DC374D1C4198ED3AD305EA3ADCBBDA1862
activate:
instanceid: test
userid: cs0008
endpoint: http://localhost:28090
msoKey: 07a7159d3bf51a0e53be7a8f89699be7
tenant:
isolation:
retry:
count: 3
aai:
endpoint: http://localhost:28090
auth: 26AFB797A6A57960D5D718491925C50F77CDC22AC394B3DBA09950D8FD1C0764
grm:
endpoint: http://localhost:28090
username: gmruser
password: test
so:
operational-environment:
dmaap:
username: testuser
password: VjR5NDcxSzA=
host: http://localhost:28090
publisher:
topic: com.att.ecomp.mso.operationalEnvironmentEvent
# controls what actions the infra API (APIH) allows sent in on REST request
vnf:
v1:
ApiAllowableActions:
v2:
ApiAllowableActions:
v3:
ApiAllowableActions:
network:
v1:
ApiAllowableActions:
v2:
ApiAllowableActions:
v3:
ApiAllowableActions:
volume:
v1:
ApiAllowableActions:
v2:
ApiAllowableActions:
v3:
ApiAllowableActions:
# H2
spring:
datasource:
url: jdbc:h2:mem:AZ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
username: sa
password: sa
driver-class-name: org.h2.Driver
intialize: true
h2:
console:
enabled: true
path: /h2
jpa:
show-sql: true
hibernate:
dialect: org.hibernate.dialect.H2Dialect
ddl-auto: validate
naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
enable_lazy_load_no_trans: true
jersey:
type: filter
security:
usercredentials:
-
username: sitecontrol
password: '$2a$12$VBUF.qBmeK1FNyO2MqTpD.P2M1tvlesZlhCkAjjHvF9hmYNVdMDmu'
role: SiteControl-Client
-
username: gui
password: '$2a$12$9Y4daXavh.oX5fz6t/e7TuCdj7EKW5B5ibqq425fN3/xpp0/Fhyti'
role: GUI-Client
-
username: infraportal
password: '$2a$12$IpUEhQijWTNbq0fGYVkA9upZrDvdIK6QfblIaKAiwi0vBQRE.C6Ri'
role: InfraPortal-Client
-
username: bpel
password: '$2a$12$1xyutEZNfjGewIZRfKaE8eZE99f5sYFUmmM80BobI65KNjmcK0JuO'
role: BPEL-Client
-
username: mso_admin
password: '$2a$12$tidKuu.h88E2nuL95pTVY.ZOYMN/1dp29A9b1o.0GFDsVVSYlMkHa'
role: ACTUATOR
request:
datasource:
url: jdbc:h2:mem:AZ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
username: sa
password: sa
driver-class-name: org.h2.Driver
intialize: true
#Actuator
management:
context-path: /manage
|