Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
Matteo Scandolo | 40ea1b1 | 2018-10-17 13:22:57 -0700 | [diff] [blame] | 15 | # curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @bbwf-olt.yaml http://192.168.100.1:30007/run |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/oltdevice.yaml |
| 20 | - custom_types/onudevice.yaml |
| 21 | - custom_types/voltservice.yaml |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 22 | description: Creates OLT devices |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 23 | topology_template: |
| 24 | node_templates: |
| 25 | |
| 26 | service#volt: |
| 27 | type: tosca.nodes.VOLTService |
| 28 | properties: |
| 29 | name: volt |
| 30 | must-exist: true |
| 31 | |
Luca Prete | 082af61 | 2018-10-15 16:18:53 +0200 | [diff] [blame] | 32 | edgecore: |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 33 | type: tosca.nodes.OLTDevice |
| 34 | properties: |
| 35 | name: EdgeCore OLT |
| 36 | device_type: openolt |
| 37 | host: 192.168.100.111 |
| 38 | port: 9191 |
| 39 | switch_datapath_id: of:0000000000000001 |
| 40 | switch_port: "49" |
| 41 | outer_tpid: "0x8100" |
| 42 | uplink: "65536" |
| 43 | nas_id: "NAS_ID" |
| 44 | requirements: |
| 45 | - volt_service: |
| 46 | node: service#volt |
| 47 | relationship: tosca.relationships.BelongsToOne |
| 48 | |
Matteo Scandolo | 334823e | 2018-10-17 11:28:57 -0700 | [diff] [blame] | 49 | # adtran: |
| 50 | # type: tosca.nodes.OLTDevice |
| 51 | # properties: |
| 52 | # name: Adtran OLT |
| 53 | # device_type: adtran_olt |
| 54 | # host: 192.168.100.112 |
| 55 | # port: 830 |
| 56 | # switch_datapath_id: of:0000000000000001 |
| 57 | # switch_port: "50" |
| 58 | # outer_tpid: "0x8100" |
| 59 | # uplink: "1" |
| 60 | # nas_id: "NAS_ID" |
| 61 | # requirements: |
| 62 | # - volt_service: |
| 63 | # node: service#volt |
| 64 | # relationship: tosca.relationships.BelongsToOne |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 65 | |
Luca Prete | 03c0ba4 | 2018-10-17 14:09:24 +0200 | [diff] [blame] | 66 | cig: |
| 67 | type: tosca.nodes.OLTDevice |
| 68 | properties: |
| 69 | name: CIG OLT |
| 70 | device_type: openolt |
| 71 | host: 192.168.100.113 |
| 72 | port: 10400 |
| 73 | switch_datapath_id: of:0000000000000001 |
| 74 | switch_port: "51" |
| 75 | outer_tpid: "0x8100" |
| 76 | uplink: "65536" |
| 77 | nas_id: "NAS_ID" |
| 78 | requirements: |
| 79 | - volt_service: |
| 80 | node: service#volt |
| 81 | relationship: tosca.relationships.BelongsToOne |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 82 | |
Matteo Scandolo | d045ab8 | 2018-10-17 13:16:00 -0700 | [diff] [blame] | 83 | # iskratel-xgspon: |
| 84 | # type: tosca.nodes.OLTDevice |
| 85 | # properties: |
| 86 | # name: Iskratel XGS-PON OLT |
| 87 | # device_type: openolt |
| 88 | # host: 192.168.100.114 |
| 89 | # port: 9191 |
| 90 | # switch_datapath_id: of:0000000000000001 |
| 91 | # switch_port: "46" |
| 92 | # outer_tpid: "0x8100" |
| 93 | # uplink: "65536" |
| 94 | # nas_id: "NAS_ID" |
| 95 | # requirements: |
| 96 | # - volt_service: |
| 97 | # node: service#volt |
| 98 | # relationship: tosca.relationships.BelongsToOne |
Luca Prete | 41dfc97 | 2018-10-17 15:50:16 +0200 | [diff] [blame] | 99 | |
| 100 | iskratel-gpon: |
| 101 | type: tosca.nodes.OLTDevice |
| 102 | properties: |
| 103 | name: Iskratel GPON OLT |
| 104 | device_type: openolt |
| 105 | host: 192.168.100.115 |
| 106 | port: 9191 |
| 107 | switch_datapath_id: of:0000000000000001 |
| 108 | switch_port: "47" |
| 109 | outer_tpid: "0x8100" |
| 110 | uplink: "65536" |
| 111 | nas_id: "NAS_ID" |
| 112 | requirements: |
| 113 | - volt_service: |
| 114 | node: service#volt |
| 115 | relationship: tosca.relationships.BelongsToOne |