blob: 43cdb3a4f79a50eca29ed7bb5a4c160d6ddec9ac [file] [log] [blame]
Suchitra Vemuric7962292019-02-07 20:33:45 -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
Suchitra Vemuri80140812019-02-07 23:16:19 -080015# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @flex-pod1-olt-olt.yaml http://10.192.20.45:30007/run
Suchitra Vemuric7962292019-02-07 20:33:45 -080016
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/oltdevice.yaml
20 - custom_types/onudevice.yaml
21 - custom_types/voltservice.yaml
Kailash77190a82019-06-27 14:23:48 -070022
Suchitra Vemuric7962292019-02-07 20:33:45 -080023description: 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 olt_device:
34 type: tosca.nodes.OLTDevice
35 properties:
36 name: olt-1
37 device_type: openolt
Suchitra Vemuri80140812019-02-07 23:16:19 -080038 host: 10.192.20.206
Suchitra Vemuric7962292019-02-07 20:33:45 -080039 port: 9191
40 switch_datapath_id: of:0000cc37ab5b6da8
41 switch_port: "7"
42 outer_tpid: "0x8100"
43 uplink: "65536"
44 nas_id: "NAS_ID"
45 requirements:
46 - volt_service:
47 node: service#volt
Kailash77190a82019-06-27 14:23:48 -070048 relationship: tosca.relationships.BelongsToOne