blob: fefcc3c0b38663d272113d7637933eebfa61fef8 [file] [log] [blame]
Luca Pretea67d3532018-09-14 10:16:10 -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
Luca Prete901cc2e2018-09-14 14:15:31 -070015# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @edgecore-pod1-fabric.yaml http://10.90.0.101:30007/run
Luca Pretea67d3532018-09-14 10:16:10 -070016
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
Luca Prete901cc2e2018-09-14 14:15:31 -070026description: Configures the EdgeCore SEBA POD with AT&T workflow
Luca Pretea67d3532018-09-14 10:16:10 -070027
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 OLT switch port
43 port#olt_port:
44 type: tosca.nodes.SwitchPort
45 properties:
Luca Prete11a7eda2018-09-17 12:51:36 -070046 portId: 49
Luca Pretea67d3532018-09-14 10:16:10 -070047 host_learning: false
48 requirements:
49 - switch:
50 node: switch#leaf_1
51 relationship: tosca.relationships.BelongsToOne
52
53 # Port connected to the BNG
54 port#bng_port:
55 type: tosca.nodes.SwitchPort
56 properties:
Luca Prete11a7eda2018-09-17 12:51:36 -070057 portId: 48
Luca Pretea67d3532018-09-14 10:16:10 -070058 host_learning: false
59 requirements:
60 - switch:
61 node: switch#leaf_1
62 relationship: tosca.relationships.BelongsToOne
63
64 # Setup the fabric switch port where the external
65 # router is connected to
66 bngmapping:
67 type: tosca.nodes.BNGPortMapping
68 properties:
69 s_tag: any
Luca Prete11a7eda2018-09-17 12:51:36 -070070 switch_port: 48
Luca Pretea67d3532018-09-14 10:16:10 -070071
72 # ONU Whitelist
73 service#att:
74 type: tosca.nodes.AttWorkflowDriverService
75 properties:
76 name: att-workflow-driver
77 must-exist: true
78
Luca Prete162d4622018-09-17 15:46:50 -070079 ALPHe3d1cea3:
Luca Prete901cc2e2018-09-14 14:15:31 -070080 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
81 properties:
Luca Prete162d4622018-09-17 15:46:50 -070082 serial_number: ALPHe3d1cea3
Luca Prete901cc2e2018-09-14 14:15:31 -070083 pon_port_id: 536870912
84 device_id: of:00000000c0a863b6
85 requirements:
86 - owner:
87 node: service#att
88 relationship: tosca.relationships.BelongsToOne
89
Luca Prete162d4622018-09-17 15:46:50 -070090 ALPHe3d1cee9:
Luca Prete901cc2e2018-09-14 14:15:31 -070091 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
92 properties:
Luca Prete162d4622018-09-17 15:46:50 -070093 serial_number: ALPHe3d1cee9
Luca Pretebcc50272018-09-17 10:50:16 -070094 pon_port_id: 536870912
Luca Prete901cc2e2018-09-14 14:15:31 -070095 device_id: of:00000000c0a863b6
96 requirements:
97 - owner:
98 node: service#att
99 relationship: tosca.relationships.BelongsToOne
100
Luca Prete448d5842018-09-17 16:25:35 -0700101 ISKT71e810c0:
Luca Pretea67d3532018-09-14 10:16:10 -0700102 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
103 properties:
Luca Prete448d5842018-09-17 16:25:35 -0700104 serial_number: ISKT71e810c0
Luca Pretebcc50272018-09-17 10:50:16 -0700105 pon_port_id: 536870912
106 device_id: of:00000000c0a863b6
107 requirements:
108 - owner:
109 node: service#att
110 relationship: tosca.relationships.BelongsToOne
111
Luca Prete162d4622018-09-17 15:46:50 -0700112 ISKT71e81130:
Luca Pretebcc50272018-09-17 10:50:16 -0700113 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
114 properties:
Luca Prete162d4622018-09-17 15:46:50 -0700115 serial_number: ISKT71e81130
Luca Pretebcc50272018-09-17 10:50:16 -0700116 pon_port_id: 536870913
117 device_id: of:00000000c0a863b6
118 requirements:
119 - owner:
120 node: service#att
121 relationship: tosca.relationships.BelongsToOne
122
Luca Prete162d4622018-09-17 15:46:50 -0700123 ISKT71e81050:
Luca Pretebcc50272018-09-17 10:50:16 -0700124 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
125 properties:
Luca Prete162d4622018-09-17 15:46:50 -0700126 serial_number: ISKT71e81050
Luca Prete901cc2e2018-09-14 14:15:31 -0700127 pon_port_id: 536870913
128 device_id: of:00000000c0a863b6
Luca Pretea67d3532018-09-14 10:16:10 -0700129 requirements:
130 - owner:
131 node: service#att
132 relationship: tosca.relationships.BelongsToOne