blob: 5f08d15ca0931ccc5473d5f7f999c68bd9acec58 [file] [log] [blame]
Matteo Scandolo1c92dac2018-11-05 17:30:58 -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 Scandolob9a27ef2018-11-13 10:51:40 -080015# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @bbsim-2.yaml http://10.90.0.120:30007/run
Matteo Scandolo1c92dac2018-11-05 17:30:58 -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
22 - custom_types/bngportmapping.yaml
23 - custom_types/attworkflowdriverwhitelistentry.yaml
24 - custom_types/attworkflowdriverservice.yaml
25 - custom_types/rcordsubscriber.yaml
26 - custom_types/serviceinstanceattribute.yaml
27 - custom_types/onosapp.yaml
28description: Create a simulated OLT Device in VOLTHA
29topology_template:
30 node_templates:
31
32 service#volt:
33 type: tosca.nodes.VOLTService
34 properties:
35 name: volt
36 must-exist: true
37
38 olt_device:
39 type: tosca.nodes.OLTDevice
40 properties:
41 name: BBSIM_OLT
42 device_type: bbsimolt
43 host: bbsim.voltha.svc
44 port: 50060
45 switch_datapath_id: of:0000000000000002
46 switch_port: "3"
47 outer_tpid: "0x8100"
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080048 nas_id: "NAS_ID"
49 serial_number: "bbsim.voltha.svc:50060"
50 requirements:
51 - volt_service:
52 node: service#volt
53 relationship: tosca.relationships.BelongsToOne
54
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080055 # Whitelist
56 service#att:
57 type: tosca.nodes.AttWorkflowDriverService
58 properties:
59 name: att-workflow-driver
60 must-exist: true
61
62 BBSM00000100:
63 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
64 properties:
65 serial_number: BBSM00000100
66 pon_port_id: 536870913
67 device_id: of:0000000000000012
68 requirements:
69 - owner:
70 node: service#att
71 relationship: tosca.relationships.BelongsToOne
72
73 BBSM00000101:
74 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
75 properties:
76 serial_number: BBSM00000101
77 pon_port_id: 536870913
78 device_id: of:0000000000000012
79 requirements:
80 - owner:
81 node: service#att
82 relationship: tosca.relationships.BelongsToOne
83
84 # Pre-provision the subscriber
85 bbsim_subscriber_0:
86 type: tosca.nodes.RCORDSubscriber
87 properties:
88 name: Sub_BBSM00000100
89 status: pre-provisioned
90 c_tag: 900
91 s_tag: 999
92 onu_device: BBSM00000100
Matteo Scandolo146038f2018-11-14 16:41:18 -080093 circuit_id: circuit0
94 remote_id: remote0
95 nas_port_id: PON 2/1/01/1:1.1.0
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080096
97 bbsim_subscriber_1:
98 type: tosca.nodes.RCORDSubscriber
99 properties:
100 name: Sub_BBSM00000101
101 status: pre-provisioned
102 c_tag: 901
103 s_tag: 999
104 onu_device: BBSM00000101
Matteo Scandolo146038f2018-11-14 16:41:18 -0800105 circuit_id: circuit1
106 remote_id: remote1
107 nas_port_id: PON 2/1/01/1:1.1.1