blob: 8667cca194dbb5eb114b97a25e66171430c35d92 [file] [log] [blame]
Luca Pretee1957ce2017-10-26 13:57:25 -07001---
Luca Pretee9962f32017-10-26 11:25:56 -07002
Joey Armstrong003e83e2023-01-09 20:23:48 -05003# Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
Luca Pretee1957ce2017-10-26 13:57:25 -07004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Luca Pretee9962f32017-10-26 11:25:56 -070016
17tosca_definitions_version: tosca_simple_yaml_1_0
18
19imports:
20 - custom_types/xos.yaml
21 - custom_types/vnaas.yaml
22
23description: vnaasglobal services, generated by platform-install
24
25topology_template:
26 node_templates:
27
Luca Pretee1957ce2017-10-26 13:57:25 -070028 onosmodel#onf:
Luca Pretee9962f32017-10-26 11:25:56 -070029 type: tosca.nodes.OnosModel
30 requirements:
31 properties:
Luca Pretee1957ce2017-10-26 13:57:25 -070032 name: onfGlobalONOS
Andrea Campanella0077a2f2017-11-01 11:14:39 -070033 onos_ip: onos-cord
Luca Pretee9962f32017-10-26 11:25:56 -070034 onos_port: 8182
35 onos_username: onos
36 onos_password: rocks
37 onos_type: global
38
39 bandwidthprofile#bronze:
40 type: tosca.nodes.BandwidthProfile
41 requirements:
42 properties:
43 cbs: 1000
44 ebs: 1200
Marc De Leenheer9cc2bc12017-10-31 00:16:35 -070045 cir: 1000
46 eir: 1200
Luca Pretee9962f32017-10-26 11:25:56 -070047 name: bronze
48
49 bandwidthprofile#silver:
50 type: tosca.nodes.BandwidthProfile
51 requirements:
52 properties:
53 cbs: 1500
54 ebs: 2000
Marc De Leenheer9cc2bc12017-10-31 00:16:35 -070055 cir: 10000
56 eir: 2000
Luca Pretee9962f32017-10-26 11:25:56 -070057 name: silver
58
59 bandwidthprofile#gold:
60 type: tosca.nodes.BandwidthProfile
61 requirements:
62 properties:
63 cbs: 2000
64 ebs: 2700
Marc De Leenheer9cc2bc12017-10-31 00:16:35 -070065 cir: 20000
66 eir: 5000
Luca Pretee9962f32017-10-26 11:25:56 -070067 name: gold
68
69 bandwidthprofile#platinum:
70 type: tosca.nodes.BandwidthProfile
71 requirements:
72 properties:
73 cbs: 2500
74 ebs: 3200
Marc De Leenheer9cc2bc12017-10-31 00:16:35 -070075 cir: 100000
76 eir: 10000
Luca Pretee9962f32017-10-26 11:25:56 -070077 name: platinum
78
Luca Pretee1957ce2017-10-26 13:57:25 -070079 # eline#testeline:
Andrea Campanella0077a2f2017-11-01 11:14:39 -070080 # type: tosca.nodes.ELine
81 # requirements:
82 # properties:
83 # name: testeline
84 # connect_point_1_id: domain:10.90.1.30-cord-onos/1
85 # connect_point_2_id: domain:10.90.1.50-cord-onos/1
86 # vlanids: 100
87 # cord_site_name: onfGlobalONOS
88 # bwp: gold
89