5f87a1235c0a1a46a327d2b6c45ceb0fb55fc1c1
[osm/RO.git] / lcm / osm_lcm / lcm.cfg
1
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]
5 global:
6     loglevel: DEBUG
7     #logfile:  /var/log/osm/lcm.log
8
9 #[RO]
10 RO:
11     #host:   ro          # hostname or IP
12     host:   localhost
13     port:   9090
14     tenant: osm
15     loglevel: DEBUG
16     #logfile:  /var/log/osm/lcm-ro.log
17
18 #[VCA]
19 VCA:
20     host:   vca
21     port:   17070
22     user:   admin
23     secret:   secret
24     loglevel: DEBUG
25     #logfile:  /var/log/osm/lcm-vca.log
26
27 #[database]
28 database:
29     driver: mongo       # mongo or memory
30     host:   mongo       # hostname or IP
31     port:   27017
32     name:   osm
33     user:   user
34     password:   password
35     loglevel: DEBUG
36     #logfile:  /var/log/osm/lcm-database.log
37
38 #[storage]
39 storage:
40     driver: local       # local filesystem
41     # for local provide file path
42     path:   /app/storage
43     loglevel: DEBUG
44     #logfile:  /var/log/osm/lcm-storage.log
45
46 #[message]
47 message:
48     driver: kafka       # local or kafka
49     # for local provide file path
50     path:   /app/storage/kafka
51     # for kafka provide host and port
52     host:   kafka
53     port:   9092
54     loglevel: DEBUG
55     #logfile:  /var/log/osm/lcm-message.log