blob: c83b65c15571e0261fdca696f134fe9c3dc05c97 [file] [log] [blame]
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -08001# 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
15# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @olt_device.yaml http://192.168.99.100:30007/run
16
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/oltdevice.yaml
Matteo Scandoloe2cb8a42018-05-18 16:30:06 -070020 - custom_types/onudevice.yaml
Matteo Scandolob8621cd2018-04-04 17:12:37 -070021 - custom_types/ponport.yaml
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080022 - custom_types/voltservice.yaml
23description: Create a simulated OLT Device in VOLTHA
24topology_template:
25 node_templates:
26
27 service#volt:
28 type: tosca.nodes.VOLTService
29 properties:
30 name: volt
31 must-exist: true
32
33 device#olt:
34 type: tosca.nodes.OLTDevice
35 properties:
36 name: test_olt
37 device_type: simulated_olt
38 host: 172.17.0.1
39 port: 50060
Matteo Scandoloe2cb8a42018-05-18 16:30:06 -070040 switch_datapath_id: of:0000000000000001
41 switch_port: "1"
42 outer_tpid: "0x8100"
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080043 requirements:
44 - volt_service:
45 node: service#volt
46 relationship: tosca.relationships.BelongsToOne
Matteo Scandolob8621cd2018-04-04 17:12:37 -070047
48 pon_port:
49 type: tosca.nodes.PONPort
50 properties:
51 name: test_olt_port_1
52 port_id: ff00ff
53 s_tag: 111
54 requirements:
55 - olt_device:
56 node: device#olt
57 relationship: tosca.relationships.BelongsToOne
Matteo Scandoloe2cb8a42018-05-18 16:30:06 -070058
59 onu:
60 type: tosca.nodes.ONUDevice
61 properties:
62 serial_number: BRCM1234
63 vendor: Broadcom
64 device_type: broadcom_onu
65 requirements:
66 - pon_port:
67 node: pon_port
68 relationship: tosca.relationships.BelongsToOne