blob: c8a1485aa7e9960936a8acd9817e58545fe3b1c1 [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 Scandolob8621cd2018-04-04 17:12:37 -070020 - custom_types/ponport.yaml
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080021 - custom_types/voltservice.yaml
22description: Create a simulated OLT Device in VOLTHA
23topology_template:
24 node_templates:
25
26 service#volt:
27 type: tosca.nodes.VOLTService
28 properties:
29 name: volt
30 must-exist: true
31
32 device#olt:
33 type: tosca.nodes.OLTDevice
34 properties:
35 name: test_olt
36 device_type: simulated_olt
37 host: 172.17.0.1
38 port: 50060
39 requirements:
40 - volt_service:
41 node: service#volt
42 relationship: tosca.relationships.BelongsToOne
Matteo Scandolob8621cd2018-04-04 17:12:37 -070043
44 pon_port:
45 type: tosca.nodes.PONPort
46 properties:
47 name: test_olt_port_1
48 port_id: ff00ff
49 s_tag: 111
50 requirements:
51 - olt_device:
52 node: device#olt
53 relationship: tosca.relationships.BelongsToOne