Suchitra Vemuri | c796229 | 2019-02-07 20:33:45 -0800 | [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 | |
Suchitra Vemuri | 8014081 | 2019-02-07 23:16:19 -0800 | [diff] [blame] | 15 | # curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @onlab-pod1-subscriber.yaml http://10.192.20.45:30007/run |
Suchitra Vemuri | c796229 | 2019-02-07 20:33:45 -0800 | [diff] [blame] | 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/rcordsubscriber.yaml |
Suchitra Vemuri | 7f31fb6 | 2019-04-23 12:57:55 -0700 | [diff] [blame] | 20 | - custom_types/bandwidthprofile.yaml |
Suchitra Vemuri | c796229 | 2019-02-07 20:33:45 -0800 | [diff] [blame] | 21 | |
| 22 | description: Pre-provsion a subscriber |
| 23 | |
| 24 | topology_template: |
| 25 | node_templates: |
| 26 | |
Suchitra Vemuri | 759434e | 2019-04-22 11:55:36 -0700 | [diff] [blame] | 27 | default_bp: |
| 28 | type: tosca.nodes.BandwidthProfile |
| 29 | properties: |
| 30 | name: Default |
| 31 | must-exist: true |
| 32 | |
Suchitra Vemuri | dacde4e | 2019-06-03 23:19:05 -0700 | [diff] [blame] | 33 | # bandwidth2 bandwidthprofile for subscriber |
| 34 | bandwidth2_bp: |
| 35 | type: tosca.nodes.BandwidthProfile |
| 36 | properties: |
| 37 | air: 100000 |
| 38 | cbs: 10000 |
| 39 | cir: 5000 |
| 40 | ebs: 10000 |
| 41 | eir: 5000 |
| 42 | name: bandwidth2 |
| 43 | |
Suchitra Vemuri | c796229 | 2019-02-07 20:33:45 -0800 | [diff] [blame] | 44 | # Pre-provision the subscriber the subscriber |
| 45 | my_house: |
| 46 | type: tosca.nodes.RCORDSubscriber |
| 47 | properties: |
| 48 | name: My House-305 |
| 49 | status: pre-provisioned |
| 50 | s_tag: 111 |
| 51 | c_tag: 999 |
| 52 | onu_device: ALPHe3d1cfa7 |
| 53 | nas_port_id : "PON 1/1/03/1:1.1.1" |
| 54 | circuit_id: foo1 |
| 55 | remote_id: bar1 |
Kailash | a32256f | 2019-06-21 14:05:29 -0700 | [diff] [blame] | 56 | tech_profile_id: 64 |
Suchitra Vemuri | 759434e | 2019-04-22 11:55:36 -0700 | [diff] [blame] | 57 | requirements: |
| 58 | - upstream_bps: |
Suchitra Vemuri | dacde4e | 2019-06-03 23:19:05 -0700 | [diff] [blame] | 59 | node: bandwidth2_bp |
Suchitra Vemuri | 759434e | 2019-04-22 11:55:36 -0700 | [diff] [blame] | 60 | relationship: tosca.relationships.BelongsToOne |
| 61 | - downstream_bps: |
Suchitra Vemuri | dacde4e | 2019-06-03 23:19:05 -0700 | [diff] [blame] | 62 | node: bandwidth2_bp |
Suchitra Vemuri | 759434e | 2019-04-22 11:55:36 -0700 | [diff] [blame] | 63 | relationship: tosca.relationships.BelongsToOne |