blob: e5de74d6e4951c7f066d64643f88c014e4fe53cd [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-fabric.yaml http://10.90.0.101:30007/run
16
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/switch.yaml
20 - custom_types/switchport.yaml
21 - custom_types/portinterface.yaml
22 - custom_types/bngportmapping.yaml
23 - custom_types/attworkflowdriverwhitelistentry.yaml
24 - custom_types/attworkflowdriverservice.yaml
25
26description: Configures the ONF SEBA POD with AT&T workflow
27
28topology_template:
29 node_templates:
30 # Fabric configuration
31 switch#leaf_1:
32 type: tosca.nodes.Switch
33 properties:
34 driver: ofdpa3
35 ipv4Loopback: 192.168.0.201
36 ipv4NodeSid: 17
37 isEdgeRouter: True
38 name: leaf_1
39 ofId: of:0000000000000001
40 routerMac: 00:00:02:01:06:01
41
42 # Setup the EdgeCore OLT switch port
43 port#olt_port_edgecore:
44 type: tosca.nodes.SwitchPort
45 properties:
46 portId: 1
47 host_learning: false
48 requirements:
49 - switch:
50 node: switch#leaf_1
51 relationship: tosca.relationships.BelongsToOne
52
53 # Setup the CIG OLT switch port
54 port#olt_port_cig:
55 type: tosca.nodes.SwitchPort
56 properties:
57 portId: 3
58 host_learning: false
59 requirements:
60 - switch:
61 node: switch#leaf_1
62 relationship: tosca.relationships.BelongsToOne
63
64 # Port connected to the BNG
65 port#bng_port:
66 type: tosca.nodes.SwitchPort
67 properties:
68 portId: 31
69 host_learning: false
70 requirements:
71 - switch:
72 node: switch#leaf_1
73 relationship: tosca.relationships.BelongsToOne
74
75 # Setup the fabric switch port where the external
76 # router is connected to
77 bngmapping:
78 type: tosca.nodes.BNGPortMapping
79 properties:
80 s_tag: any
81 switch_port: 31
82
83 # ONU Whitelist
84 service#att:
85 type: tosca.nodes.AttWorkflowDriverService
86 properties:
87 name: att-workflow-driver
88 must-exist: true
89
90 BRCM22222222:
91 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
92 properties:
93 serial_number: BRCM22222222
94 # pon_port_id: 536870912
95 pon_port_id: 12345678
96 device_id: of:000000000a5a0072
97 requirements:
98 - owner:
99 node: service#att
100 relationship: tosca.relationships.BelongsToOne
101
102 ALPHe3d1cfde:
103 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
104 properties:
105 serial_number: ALPHe3d1cfde
106 pon_port_id: 536870912
107 device_id: of:000000000a5a0072
108 requirements:
109 - owner:
110 node: service#att
111 relationship: tosca.relationships.BelongsToOne
112
113 ISKT71e801a0:
114 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
115 properties:
116 serial_number: ISKT71e801a0
117 pon_port_id: 536870912
118 device_id: of:000000000a5a0072
119 requirements:
120 - owner:
121 node: service#att
122 relationship: tosca.relationships.BelongsToOne
123
124 CIG:
125 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
126 properties:
127 serial_number: CIG
128 pon_port_id: 536870912
129 device_id: of:000000000a5a0072
130 requirements:
131 - owner:
132 node: service#att
133 relationship: tosca.relationships.BelongsToOne