3c9b1fd906035211b99e0f436c87f658592b3c7f
[osm/LCM.git] / 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:  /app/log  # or /var/log/osm/lcm.log
8     # nologging: True     # do no log to stdout/stderr
9
10 #[RO]
11 RO:
12     host:   ro          # hostname or IP
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     # masterpassword: "XXXXXX" # password used for encryption of sensible information
36     # loglevel: DEBUG
37     # logfile:  /var/log/osm/lcm-database.log
38
39 #[storage]
40 storage:
41     driver: local       # local filesystem
42     # for local provide file path
43     path:   /app/storage
44     # loglevel: DEBUG
45     # logfile:  /var/log/osm/lcm-storage.log
46
47 #[message]
48 message:
49     driver: kafka       # local or kafka
50     # for local provide file path
51     path:   /app/storage/kafka
52     # for kafka provide host and port
53     host:   kafka
54     port:   9092
55     # loglevel: DEBUG
56     # logfile:  /var/log/osm/lcm-message.log