blob: 42213bbb719d6ca7e70bf9dfeb76132fff9a1a8f [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_mac_address.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
35 device_type: simulated_olt
Matteo Scandolo2ed64b92018-06-18 10:32:56 -070036 mac_address: 00:0c:e2:31:40:00
Matteo Scandoloe2cb8a42018-05-18 16:30:06 -070037 switch_datapath_id: of:0000000000000001
38 switch_port: "1"
39 outer_tpid: "0x8100"
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080040 requirements:
41 - volt_service:
42 node: service#volt
43 relationship: tosca.relationships.BelongsToOne