Luca Prete | a67d353 | 2018-09-14 10:16:10 -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 | 7454871 | 2018-09-19 13:12:43 -0700 | [diff] [blame] | 15 | # curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @edgecore-pod1-olt.yaml http://192.168.99.181:30007/run |
Luca Prete | a67d353 | 2018-09-14 10:16:10 -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 |
| 22 | description: Create a simulated OLT Device in VOLTHA |
| 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 | |
| 32 | olt_device: |
| 33 | type: tosca.nodes.OLTDevice |
| 34 | properties: |
| 35 | name: ONF OLT |
| 36 | device_type: openolt |
| 37 | host: 192.168.99.182 |
| 38 | port: 9191 |
| 39 | switch_datapath_id: of:0000000000000001 |
Luca Prete | 448d584 | 2018-09-17 16:25:35 -0700 | [diff] [blame] | 40 | switch_port: "49" |
Luca Prete | a67d353 | 2018-09-14 10:16:10 -0700 | [diff] [blame] | 41 | outer_tpid: "0x8100" |
Scott Baker | 970d5d5 | 2018-12-11 07:00:17 +0000 | [diff] [blame] | 42 | uplink: "65536" |
Luca Prete | a67d353 | 2018-09-14 10:16:10 -0700 | [diff] [blame] | 43 | nas_id: "NAS_ID" |
| 44 | requirements: |
| 45 | - volt_service: |
| 46 | node: service#volt |
| 47 | relationship: tosca.relationships.BelongsToOne |