| tierno | 2e21551 | 2018-11-28 09:37:52 +0000 | [diff] [blame] | 1 | ## |
| 2 | # Copyright 2018 Telefonica S.A. |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 5 | # not use this file except in compliance with the License. You may obtain |
| 6 | # a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 12 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 13 | # License for the specific language governing permissions and limitations |
| 14 | # under the License. |
| 15 | ## |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 16 | |
| 17 | # TODO currently is a pure yaml format. Consider to change it to [ini] style with yaml inside to be coherent with other modules |
| 18 | |
| 19 | #[global] |
| 20 | global: |
| 21 | loglevel: DEBUG |
| tierno | 5506404 | 2018-10-15 18:14:12 +0200 | [diff] [blame] | 22 | # logfile: /app/log # or /var/log/osm/lcm.log |
| tierno | 86aa62f | 2018-08-20 11:57:04 +0000 | [diff] [blame] | 23 | # nologging: True # do no log to stdout/stderr |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 24 | |
| tierno | 744303e | 2020-01-13 16:46:31 +0000 | [diff] [blame] | 25 | #[timeout] |
| 26 | timeout: |
| 27 | # ns_deploy: 7200 # total deploy timeout for a ns 2 hours |
| 28 | # nsi_deploy: 7200 # total deploy timeout for a nsi 2 hours |
| 29 | |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 30 | #[RO] |
| 31 | RO: |
| 32 | host: ro # hostname or IP |
| 33 | port: 9090 |
| 34 | tenant: osm |
| tierno | 17a612f | 2018-10-23 11:30:42 +0200 | [diff] [blame] | 35 | # loglevel: DEBUG |
| tierno | 86aa62f | 2018-08-20 11:57:04 +0000 | [diff] [blame] | 36 | # logfile: /var/log/osm/lcm-ro.log |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 37 | |
| 38 | #[VCA] |
| 39 | VCA: |
| 40 | host: vca |
| 41 | port: 17070 |
| 42 | user: admin |
| tierno | 9597c29 | 2019-02-06 09:21:27 +0000 | [diff] [blame] | 43 | secret: secret |
| tierno | 94f0611 | 2020-02-11 12:38:19 +0000 | [diff] [blame] | 44 | helmpath: /usr/local/bin/helm |
| 45 | kubectlpath: /usr/bin/kubectl |
| 46 | jujupath: /usr/local/bin/juju |
| tierno | 9597c29 | 2019-02-06 09:21:27 +0000 | [diff] [blame] | 47 | # pubkey: pubkey |
| 48 | # cacert: cacert |
| Adam Israel | 78770df | 2019-09-04 11:55:55 -0400 | [diff] [blame] | 49 | # apiproxy: apiproxy |
| tierno | 9597c29 | 2019-02-06 09:21:27 +0000 | [diff] [blame] | 50 | |
| tierno | 17a612f | 2018-10-23 11:30:42 +0200 | [diff] [blame] | 51 | # loglevel: DEBUG |
| tierno | 86aa62f | 2018-08-20 11:57:04 +0000 | [diff] [blame] | 52 | # logfile: /var/log/osm/lcm-vca.log |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 53 | |
| 54 | #[database] |
| 55 | database: |
| 56 | driver: mongo # mongo or memory |
| 57 | host: mongo # hostname or IP |
| 58 | port: 27017 |
| 59 | name: osm |
| tierno | 17a612f | 2018-10-23 11:30:42 +0200 | [diff] [blame] | 60 | # user: user |
| 61 | # password: password |
| tierno | b6541cf | 2018-11-12 12:17:30 +0100 | [diff] [blame] | 62 | # commonkey: "XXXXXX" # password used for encryption of sensible information |
| tierno | 17a612f | 2018-10-23 11:30:42 +0200 | [diff] [blame] | 63 | # loglevel: DEBUG |
| tierno | 86aa62f | 2018-08-20 11:57:04 +0000 | [diff] [blame] | 64 | # logfile: /var/log/osm/lcm-database.log |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 65 | |
| 66 | #[storage] |
| 67 | storage: |
| 68 | driver: local # local filesystem |
| 69 | # for local provide file path |
| 70 | path: /app/storage |
| tierno | 17a612f | 2018-10-23 11:30:42 +0200 | [diff] [blame] | 71 | # loglevel: DEBUG |
| tierno | 86aa62f | 2018-08-20 11:57:04 +0000 | [diff] [blame] | 72 | # logfile: /var/log/osm/lcm-storage.log |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 73 | |
| 74 | #[message] |
| 75 | message: |
| Eduardo Sousa | a86e611 | 2018-12-19 13:36:58 +0000 | [diff] [blame] | 76 | driver: kafka # local or kafka |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 77 | # for local provide file path |
| Eduardo Sousa | a86e611 | 2018-12-19 13:36:58 +0000 | [diff] [blame] | 78 | path: /app/storage/kafka |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 79 | # for kafka provide host and port |
| Eduardo Sousa | a86e611 | 2018-12-19 13:36:58 +0000 | [diff] [blame] | 80 | host: kafka |
| 81 | port: 9092 |
| tierno | 17a612f | 2018-10-23 11:30:42 +0200 | [diff] [blame] | 82 | # loglevel: DEBUG |
| tierno | 86aa62f | 2018-08-20 11:57:04 +0000 | [diff] [blame] | 83 | # logfile: /var/log/osm/lcm-message.log |
| Eduardo Sousa | a86e611 | 2018-12-19 13:36:58 +0000 | [diff] [blame] | 84 | group_id: lcm-server |