Andrea Campanella | bd56e78 | 2017-02-23 15:43:21 +0100 | [diff] [blame] | 1 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 2 | |
| 3 | imports: |
| 4 | - custom_types/xos.yaml |
| 5 | - custom_types/metronet.yaml |
| 6 | |
| 7 | description: vnodglobal services, generated by platform-install |
| 8 | |
| 9 | topology_template: |
Andrea Campanella | c8488c2 | 2017-06-13 15:38:51 +0200 | [diff] [blame] | 10 | node_templates: |
Andrea Campanella | bd56e78 | 2017-02-23 15:43:21 +0100 | [diff] [blame] | 11 | |
Andrea Campanella | c8488c2 | 2017-06-13 15:38:51 +0200 | [diff] [blame] | 12 | enterpriselocation#onlab: |
| 13 | type: tosca.nodes.EnterpriseLocation |
| 14 | requirements: |
| 15 | properties: |
| 16 | name: onlab |
| 17 | cord_site_ip: 127.0.0.1 |
| 18 | cord_site_port: 8181 |
| 19 | cord_site_username: onos |
| 20 | cord_site_password: rocks |
| 21 | cord_site_type: onos |
Andrea Campanella | e078455 | 2017-03-21 17:23:06 +0100 | [diff] [blame] | 22 | |
Andrea Campanella | e078455 | 2017-03-21 17:23:06 +0100 | [diff] [blame] | 23 | |
Andrea Campanella | c8488c2 | 2017-06-13 15:38:51 +0200 | [diff] [blame] | 24 | enterpriselocation#onlab1: |
| 25 | type: tosca.nodes.EnterpriseLocation |
| 26 | requirements: |
| 27 | properties: |
| 28 | name: onlab1 |
| 29 | cord_site_ip: 127.0.0.2 |
| 30 | cord_site_port: 8181 |
| 31 | cord_site_username: onos |
| 32 | cord_site_password: rocks |
| 33 | cord_site_type: onos |
Andrea Campanella | e078455 | 2017-03-21 17:23:06 +0100 | [diff] [blame] | 34 | |
Andrea Campanella | c8488c2 | 2017-06-13 15:38:51 +0200 | [diff] [blame] | 35 | onosmodel#onlab: |
| 36 | type: tosca.nodes.OnosModel |
| 37 | requirements: |
| 38 | properties: |
| 39 | name: onlabT |
| 40 | onos_ip: 127.0.0.1 |
| 41 | onos_port: 8181 |
| 42 | onos_username: onos |
| 43 | onos_password: rocks |
| 44 | onos_type: global |
Andrea Campanella | e078455 | 2017-03-21 17:23:06 +0100 | [diff] [blame] | 45 | |
Andrea Campanella | c8488c2 | 2017-06-13 15:38:51 +0200 | [diff] [blame] | 46 | bandwidthprofile#bronze: |
| 47 | type: tosca.nodes.BandwidthProfile |
| 48 | requirements: |
| 49 | properties: |
| 50 | cbs: 1000 |
| 51 | ebs: 1200 |
| 52 | cir: 1000000 |
| 53 | eir: 1200000 |
| 54 | name: bronze |
Andrea Campanella | bd56e78 | 2017-02-23 15:43:21 +0100 | [diff] [blame] | 55 | |
Andrea Campanella | c8488c2 | 2017-06-13 15:38:51 +0200 | [diff] [blame] | 56 | bandwidthprofile#silver: |
| 57 | type: tosca.nodes.BandwidthProfile |
| 58 | requirements: |
| 59 | properties: |
| 60 | cbs: 1500 |
| 61 | ebs: 2000 |
| 62 | cir: 1500000 |
| 63 | eir: 2000000 |
| 64 | name: silver |
| 65 | |
| 66 | bandwidthprofile#gold: |
| 67 | type: tosca.nodes.BandwidthProfile |
| 68 | requirements: |
| 69 | properties: |
| 70 | cbs: 2000 |
| 71 | ebs: 2700 |
| 72 | cir: 2000000 |
| 73 | eir: 2700000 |
| 74 | name: gold |
| 75 | |
| 76 | bandwidthprofile#platinum: |
| 77 | type: tosca.nodes.BandwidthProfile |
| 78 | requirements: |
| 79 | properties: |
| 80 | cbs: 2500 |
| 81 | ebs: 3200 |
| 82 | cir: 2500000 |
| 83 | eir: 3200000 |
| 84 | name: platinum |
| 85 | |
| 86 | usernetworkinterface#UserNetworkInterface1: |
| 87 | type: tosca.nodes.UserNetworkInterface |
| 88 | requirements: |
| 89 | properties: |
| 90 | tenant: onlab |
| 91 | name: uni1 |
| 92 | latlng: [37.973535, -122.531087] |
| 93 | cpe_id: netconf:192.168.56.10:830/0 |
| 94 | |
| 95 | usernetworkinterface#UserNetworkInterface2: |
| 96 | type: tosca.nodes.UserNetworkInterface |
| 97 | requirements: |
| 98 | properties: |
| 99 | tenant: onlab |
| 100 | name: uni2 |
| 101 | latlng: [37.773972, -122.431297] |
| 102 | cpe_id: netconf:192.168.56.20:830/0 |
| 103 | |
| 104 | eline#testeline: |
| 105 | type: tosca.nodes.ELine |
| 106 | requirements: |
| 107 | properties: |
| 108 | name: testeline |
| 109 | connect_point_1_id: netconf:192.168.56.10:830/0 |
| 110 | connect_point_2_id: netconf:192.168.56.20:830/0 |
| 111 | vlanids: 100 |
| 112 | cord_site_name: onlabT |
| 113 | bwp: gold |