blob: c0ec47c5fabd50c901b972ded237f8151ef03416 [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
Matteo Scandolo2ed64b92018-06-18 10:32:56 -070015# 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 Scandolo4a8b4d62018-03-06 17:18:46 -080016
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/oltdevice.yaml
20 - custom_types/voltservice.yaml
21description: Create a simulated OLT Device in VOLTHA
22topology_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 Scandolo2ed64b92018-06-18 10:32:56 -070035 device_type: ponsim
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080036 host: 172.17.0.1
37 port: 50060
Matteo Scandoloe2cb8a42018-05-18 16:30:06 -070038 switch_datapath_id: of:0000000000000001
39 switch_port: "1"
40 outer_tpid: "0x8100"
Scott Baker59b1e072018-08-23 15:59:05 -070041 dp_id: of:0000000ce2314000
42 uplink: "129"
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080043 requirements:
44 - volt_service:
45 node: service#volt
46 relationship: tosca.relationships.BelongsToOne