blob: 58186b6bef497028992252af2bc1594505e450b2 [file] [log] [blame]
Luca Prete3940ea92018-09-25 13:53:37 -07001# 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 @onlab-pod1-olt.yaml http://10.90.0.101:30007/run
16
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/oltdevice.yaml
20 - custom_types/onudevice.yaml
21 - 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 # EdgeCore
33 olt_device:
34 type: tosca.nodes.OLTDevice
35 properties:
36 name: EdgeCore
37 device_type: openolt
38 host: 10.90.0.114
39 port: 9191
40 switch_datapath_id: of:0000000000000001
41 switch_port: "1"
42 outer_tpid: "0x8100"
43 uplink: "65536"
44 nas_id: "NAS_ID"
45 requirements:
46 - volt_service:
47 node: service#volt
48 relationship: tosca.relationships.BelongsToOne
49
50 # CIG
51 olt_device:
52 type: tosca.nodes.OLTDevice
53 properties:
54 name: CIG
55 device_type: openolt
56 host: 10.90.0.115
57 port: 9191
58 switch_datapath_id: of:0000000000000001
59 switch_port: "3"
60 outer_tpid: "0x8100"
61 uplink: "65536"
62 nas_id: "NAS_ID"
63 requirements:
64 - volt_service:
65 node: service#volt
66 relationship: tosca.relationships.BelongsToOne