blob: c62ee2505a1c42524a75c36f0da09129269ee83f [file] [log] [blame]
tiernoc0e42e22018-05-11 11:36:10 +02001
2# TODO currently is a pure yaml format. Consider to change it to [ini] style with yaml inside to be coherent with other modules
3
4#[global]
5global:
6 loglevel: DEBUG
7 #logfile: /var/log/osm/lcm.log
8
9#[RO]
10RO:
11 host: ro # hostname or IP
12 port: 9090
13 tenant: osm
14 loglevel: DEBUG
15 #logfile: /var/log/osm/lcm-ro.log
16
17#[VCA]
18VCA:
19 host: vca
20 port: 17070
21 user: admin
22 secret: secret
23 loglevel: DEBUG
24 #logfile: /var/log/osm/lcm-vca.log
25
26#[database]
27database:
28 driver: mongo # mongo or memory
29 host: mongo # hostname or IP
30 port: 27017
31 name: osm
32 user: user
33 password: password
34 loglevel: DEBUG
35 #logfile: /var/log/osm/lcm-database.log
36
37#[storage]
38storage:
39 driver: local # local filesystem
40 # for local provide file path
41 path: /app/storage
42 loglevel: DEBUG
43 #logfile: /var/log/osm/lcm-storage.log
44
45#[message]
46message:
47 driver: kafka # local or kafka
48 # for local provide file path
49 path: /app/storage/kafka
50 # for kafka provide host and port
51 host: kafka
52 port: 9092
53 loglevel: DEBUG
54 #logfile: /var/log/osm/lcm-message.log