| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 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 | port: 9090 |
| 13 | tenant: osm |
| 14 | loglevel: DEBUG |
| 15 | #logfile: /var/log/osm/lcm-ro.log |
| 16 | |
| 17 | #[VCA] |
| 18 | VCA: |
| 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] |
| 27 | database: |
| 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] |
| 38 | storage: |
| 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] |
| 46 | message: |
| 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 |