blob: 63a3f44b4ded6ffd52d20990400b9bc9535d2a38 [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"
48 uplink: "65536"
49 nas_id: "NAS_ID"
50 serial_number: "bbsim.voltha.svc:50060"
51 requirements:
52 - volt_service:
53 node: service#volt
54 relationship: tosca.relationships.BelongsToOne
55
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080056 # Whitelist
57 service#att:
58 type: tosca.nodes.AttWorkflowDriverService
59 properties:
60 name: att-workflow-driver
61 must-exist: true
62
63 BBSM00000100:
64 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
65 properties:
66 serial_number: BBSM00000100
67 pon_port_id: 536870913
68 device_id: of:0000000000000012
69 requirements:
70 - owner:
71 node: service#att
72 relationship: tosca.relationships.BelongsToOne
73
74 BBSM00000101:
75 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
76 properties:
77 serial_number: BBSM00000101
78 pon_port_id: 536870913
79 device_id: of:0000000000000012
80 requirements:
81 - owner:
82 node: service#att
83 relationship: tosca.relationships.BelongsToOne
84
85 # Pre-provision the subscriber
86 bbsim_subscriber_0:
87 type: tosca.nodes.RCORDSubscriber
88 properties:
89 name: Sub_BBSM00000100
90 status: pre-provisioned
91 c_tag: 900
92 s_tag: 999
93 onu_device: BBSM00000100
Matteo Scandolo146038f2018-11-14 16:41:18 -080094 circuit_id: circuit0
95 remote_id: remote0
96 nas_port_id: PON 2/1/01/1:1.1.0
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080097
98 bbsim_subscriber_1:
99 type: tosca.nodes.RCORDSubscriber
100 properties:
101 name: Sub_BBSM00000101
102 status: pre-provisioned
103 c_tag: 901
104 s_tag: 999
105 onu_device: BBSM00000101
Matteo Scandolo146038f2018-11-14 16:41:18 -0800106 circuit_id: circuit1
107 remote_id: remote1
108 nas_port_id: PON 2/1/01/1:1.1.1