Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [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 | 2ed64b9 | 2018-06-18 10:32:56 -0700 | [diff] [blame^] | 15 | # curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @olt_device_host_and_port.yaml http://192.168.99.100:30007/run |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/oltdevice.yaml |
| 20 | - custom_types/voltservice.yaml |
| 21 | description: Create a simulated OLT Device in VOLTHA |
| 22 | topology_template: |
| 23 | node_templates: |
| 24 | |
| 25 | service#volt: |
| 26 | type: tosca.nodes.VOLTService |
| 27 | properties: |
| 28 | name: volt |
| 29 | must-exist: true |
| 30 | |
| 31 | device#olt: |
| 32 | type: tosca.nodes.OLTDevice |
| 33 | properties: |
| 34 | name: test_olt |
Matteo Scandolo | 2ed64b9 | 2018-06-18 10:32:56 -0700 | [diff] [blame^] | 35 | device_type: ponsim |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 36 | host: 172.17.0.1 |
| 37 | port: 50060 |
Matteo Scandolo | e2cb8a4 | 2018-05-18 16:30:06 -0700 | [diff] [blame] | 38 | switch_datapath_id: of:0000000000000001 |
| 39 | switch_port: "1" |
| 40 | outer_tpid: "0x8100" |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 41 | requirements: |
| 42 | - volt_service: |
| 43 | node: service#volt |
| 44 | relationship: tosca.relationships.BelongsToOne |