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 |
| 31 | must-exist: true |
| 32 | |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 33 | # Pre-provision the subscriber the subscriber |
| 34 | shad_1: |
| 35 | type: tosca.nodes.RCORDSubscriber |
| 36 | properties: |
| 37 | name: Sub_ALPHe3d1cfe3 |
| 38 | status: pre-provisioned |
Matteo Scandolo | 10b3ee8 | 2018-10-08 13:51:56 -0700 | [diff] [blame] | 39 | c_tag: 111 |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 40 | s_tag: 222 |
| 41 | onu_device: ALPHe3d1cfe3 |
| 42 | nas_port_id : "PON 1/1/03/1:1.1.1" |
| 43 | circuit_id: foo1 |
| 44 | remote_id: bar1 |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame^] | 45 | requirements: |
| 46 | - upstream_bps: |
| 47 | node: default_bp |
| 48 | relationship: tosca.relationships.BelongsToOne |
| 49 | - downstream_bps: |
| 50 | node: default_bp |
| 51 | relationship: tosca.relationships.BelongsToOne |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 52 | |
| 53 | shad_2: |
| 54 | type: tosca.nodes.RCORDSubscriber |
| 55 | properties: |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame^] | 56 | name: Sub_ALPHe3d1cf9d |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 57 | status: pre-provisioned |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame^] | 58 | c_tag: 112 |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 59 | s_tag: 222 |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame^] | 60 | onu_device: ALPHe3d1cf9d |
| 61 | nas_port_id : "PON 1/1/03/1:1.1.2" |
Matteo Scandolo | 1760e9b | 2018-10-08 10:17:51 -0700 | [diff] [blame] | 62 | circuit_id: foo2 |
| 63 | remote_id: bar2 |
Matteo Scandolo | 47ade5d | 2019-03-23 08:47:47 -0700 | [diff] [blame^] | 64 | requirements: |
| 65 | - upstream_bps: |
| 66 | node: default_bp |
| 67 | relationship: tosca.relationships.BelongsToOne |
| 68 | - downstream_bps: |
| 69 | node: default_bp |
| 70 | relationship: tosca.relationships.BelongsToOne |
| 71 | |
| 72 | shad_3: |
| 73 | type: tosca.nodes.RCORDSubscriber |
| 74 | properties: |
| 75 | name: Sub_ALPHe3d1cf8e |
| 76 | status: pre-provisioned |
| 77 | c_tag: 113 |
| 78 | s_tag: 222 |
| 79 | onu_device: ALPHe3d1cf8e |
| 80 | nas_port_id : "PON 1/1/03/1:1.1.3" |
| 81 | circuit_id: foo3 |
| 82 | remote_id: bar3 |
| 83 | requirements: |
| 84 | - upstream_bps: |
| 85 | node: default_bp |
| 86 | relationship: tosca.relationships.BelongsToOne |
| 87 | - downstream_bps: |
| 88 | node: default_bp |
| 89 | relationship: tosca.relationships.BelongsToOne |
| 90 | |
| 91 | shad_4: |
| 92 | type: tosca.nodes.RCORDSubscriber |
| 93 | properties: |
| 94 | name: Sub_ALPHe3d1cf70 |
| 95 | status: pre-provisioned |
| 96 | c_tag: 114 |
| 97 | s_tag: 222 |
| 98 | onu_device: ALPHe3d1cf70 |
| 99 | nas_port_id : "PON 1/1/03/1:1.1.4" |
| 100 | circuit_id: foo4 |
| 101 | remote_id: bar4 |
| 102 | requirements: |
| 103 | - upstream_bps: |
| 104 | node: default_bp |
| 105 | relationship: tosca.relationships.BelongsToOne |
| 106 | - downstream_bps: |
| 107 | node: default_bp |
| 108 | relationship: tosca.relationships.BelongsToOne |
| 109 | |
| 110 | shad_5: |
| 111 | type: tosca.nodes.RCORDSubscriber |
| 112 | properties: |
| 113 | name: Sub_ALPHe3d1ced5 |
| 114 | status: pre-provisioned |
| 115 | c_tag: 115 |
| 116 | s_tag: 222 |
| 117 | onu_device: ALPHe3d1ced5 |
| 118 | nas_port_id : "PON 1/1/03/1:1.1.5" |
| 119 | circuit_id: foo5 |
| 120 | remote_id: bar5 |
| 121 | requirements: |
| 122 | - upstream_bps: |
| 123 | node: default_bp |
| 124 | relationship: tosca.relationships.BelongsToOne |
| 125 | - downstream_bps: |
| 126 | node: default_bp |
| 127 | relationship: tosca.relationships.BelongsToOne |