blob: 739c9e80dbfa0b4733e256483f1601409158655a [file] [log] [blame]
Joey Armstrong003e83e2023-01-09 20:23:48 -05001# Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo1760e9b2018-10-08 10:17:51 -07002#
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 Scandolo9d21ae72018-10-09 20:09:29 -070015# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @onlab-pod2-olt.yaml http://10.90.0.120:30007/run
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070016
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 olt_device:
33 type: tosca.nodes.OLTDevice
34 properties:
Matteo Scandolo1675aa12018-10-08 14:54:36 -070035 name: SHAD OLT
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070036 device_type: openolt
37 host: 10.90.0.122
38 port: 9191
Matteo Scandolo1675aa12018-10-08 14:54:36 -070039 switch_datapath_id: of:0000000000000002
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070040 switch_port: "1"
41 outer_tpid: "0x8100"
Scott Baker970d5d52018-12-11 07:00:17 +000042 uplink: "65536"
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070043 nas_id: "NAS_ID"
Matteo Scandolo0241e6a2018-12-12 13:27:42 -080044 serial_number: "10.90.0.122:9191"
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070045 requirements:
46 - volt_service:
47 node: service#volt
Matteo Scandolo0241e6a2018-12-12 13:27:42 -080048 relationship: tosca.relationships.BelongsToOne