Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 1 | # 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 Scandolo | 9d21ae7 | 2018-10-09 20:09:29 -0700 | [diff] [blame] | 15 | # curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @onlab-pod2-subscriber.yaml http://10.90.0.120:30007/run |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/rcordsubscriber.yaml |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame] | 20 | - custom_types/bandwidthprofile.yaml |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 21 | |
| 22 | description: Pre-provsion a subscriber |
| 23 | |
| 24 | topology_template: |
| 25 | node_templates: |
| 26 | |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame] | 27 | default_bp: |
| 28 | type: tosca.nodes.BandwidthProfile |
| 29 | properties: |
| 30 | name: Default |
Matteo Scandolo | f0e232b | 2019-03-23 09:53:21 -0700 | [diff] [blame] | 31 | air: 10000 |
| 32 | cbs: 10000 |
| 33 | cir: 10000 |
| 34 | ebs: 10000 |
| 35 | eir: 10000 |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame] | 36 | |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 37 | # Pre-provision the subscriber the subscriber |
| 38 | shad_1: |
| 39 | type: tosca.nodes.RCORDSubscriber |
| 40 | properties: |
| 41 | name: Sub_ALPHe3d1cfe3 |
| 42 | status: pre-provisioned |
Matteo Scandolo | 10b3ee8 | 2018-10-08 13:51:56 -0700 | [diff] [blame] | 43 | c_tag: 111 |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 44 | s_tag: 222 |
| 45 | onu_device: ALPHe3d1cfe3 |
| 46 | nas_port_id : "PON 1/1/03/1:1.1.1" |
| 47 | circuit_id: foo1 |
| 48 | remote_id: bar1 |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame] | 49 | requirements: |
| 50 | - upstream_bps: |
| 51 | node: default_bp |
| 52 | relationship: tosca.relationships.BelongsToOne |
| 53 | - downstream_bps: |
| 54 | node: default_bp |
| 55 | relationship: tosca.relationships.BelongsToOne |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 56 | |
| 57 | shad_2: |
| 58 | type: tosca.nodes.RCORDSubscriber |
| 59 | properties: |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame] | 60 | name: Sub_ALPHe3d1cf9d |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 61 | status: pre-provisioned |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame] | 62 | c_tag: 112 |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 63 | s_tag: 222 |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame] | 64 | onu_device: ALPHe3d1cf9d |
| 65 | nas_port_id : "PON 1/1/03/1:1.1.2" |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 66 | circuit_id: foo2 |
| 67 | remote_id: bar2 |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame] | 68 | requirements: |
| 69 | - upstream_bps: |
| 70 | node: default_bp |
| 71 | relationship: tosca.relationships.BelongsToOne |
| 72 | - downstream_bps: |
| 73 | node: default_bp |
| 74 | relationship: tosca.relationships.BelongsToOne |
| 75 | |
| 76 | shad_3: |
| 77 | type: tosca.nodes.RCORDSubscriber |
| 78 | properties: |
| 79 | name: Sub_ALPHe3d1cf8e |
| 80 | status: pre-provisioned |
| 81 | c_tag: 113 |
| 82 | s_tag: 222 |
| 83 | onu_device: ALPHe3d1cf8e |
| 84 | nas_port_id : "PON 1/1/03/1:1.1.3" |
| 85 | circuit_id: foo3 |
| 86 | remote_id: bar3 |
| 87 | requirements: |
| 88 | - upstream_bps: |
| 89 | node: default_bp |
| 90 | relationship: tosca.relationships.BelongsToOne |
| 91 | - downstream_bps: |
| 92 | node: default_bp |
| 93 | relationship: tosca.relationships.BelongsToOne |
| 94 | |
| 95 | shad_4: |
| 96 | type: tosca.nodes.RCORDSubscriber |
| 97 | properties: |
| 98 | name: Sub_ALPHe3d1cf70 |
| 99 | status: pre-provisioned |
| 100 | c_tag: 114 |
| 101 | s_tag: 222 |
| 102 | onu_device: ALPHe3d1cf70 |
| 103 | nas_port_id : "PON 1/1/03/1:1.1.4" |
| 104 | circuit_id: foo4 |
| 105 | remote_id: bar4 |
| 106 | requirements: |
| 107 | - upstream_bps: |
| 108 | node: default_bp |
| 109 | relationship: tosca.relationships.BelongsToOne |
| 110 | - downstream_bps: |
| 111 | node: default_bp |
| 112 | relationship: tosca.relationships.BelongsToOne |
| 113 | |
| 114 | shad_5: |
| 115 | type: tosca.nodes.RCORDSubscriber |
| 116 | properties: |
| 117 | name: Sub_ALPHe3d1ced5 |
| 118 | status: pre-provisioned |
| 119 | c_tag: 115 |
| 120 | s_tag: 222 |
| 121 | onu_device: ALPHe3d1ced5 |
| 122 | nas_port_id : "PON 1/1/03/1:1.1.5" |
| 123 | circuit_id: foo5 |
| 124 | remote_id: bar5 |
| 125 | requirements: |
| 126 | - upstream_bps: |
| 127 | node: default_bp |
| 128 | relationship: tosca.relationships.BelongsToOne |
| 129 | - downstream_bps: |
| 130 | node: default_bp |
| 131 | relationship: tosca.relationships.BelongsToOne |