You Wang | a069ccb | 2018-11-13 13:25:59 -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 | |
Matteo Scandolo | 7d843b7 | 2019-05-13 17:30:38 -0700 | [diff] [blame] | 15 | # curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @onlab-pod1-qa-subscriber.yaml http://10.90.0.101:30007/run |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/rcordsubscriber.yaml |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 20 | - custom_types/bandwidthprofile.yaml |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 21 | |
| 22 | description: Pre-provsion a subscriber |
| 23 | |
| 24 | topology_template: |
| 25 | node_templates: |
| 26 | |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 27 | default_bp: |
| 28 | type: tosca.nodes.BandwidthProfile |
| 29 | properties: |
| 30 | name: Default |
| 31 | must-exist: true |
| 32 | |
Suchitra Vemuri | 6f92c7a | 2019-05-17 11:56:24 -0700 | [diff] [blame] | 33 | # bandwidth2 bandwidthprofile for subscriber |
| 34 | bandwidth2_bp: |
| 35 | type: tosca.nodes.BandwidthProfile |
| 36 | properties: |
Suchitra Vemuri | 8c65536 | 2019-06-26 15:34:06 -0700 | [diff] [blame] | 37 | air: 100000 |
| 38 | cbs: 10000 |
| 39 | cir: 5000 |
| 40 | ebs: 1000 |
| 41 | eir: 5000 |
Suchitra Vemuri | 6f92c7a | 2019-05-17 11:56:24 -0700 | [diff] [blame] | 42 | name: bandwidth2 |
| 43 | |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 44 | # Pre-provision the subscriber the subscriber |
| 45 | onf_subscriber_1: |
| 46 | type: tosca.nodes.RCORDSubscriber |
| 47 | properties: |
Matteo Scandolo | 069eaa9 | 2019-06-27 13:12:06 -0700 | [diff] [blame] | 48 | name: Sub_ISKT71e801a0 |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 49 | status: pre-provisioned |
| 50 | c_tag: 111 |
| 51 | s_tag: 111 |
Matteo Scandolo | 069eaa9 | 2019-06-27 13:12:06 -0700 | [diff] [blame] | 52 | onu_device: ISKT71e801a0 |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 53 | nas_port_id : "PON 1/1/03/1:1.1.1" |
| 54 | circuit_id: foo1 |
| 55 | remote_id: bar1 |
Matteo Scandolo | 1f09aad | 2019-06-18 18:37:36 -0700 | [diff] [blame] | 56 | tech_profile_id: 64 |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 57 | requirements: |
| 58 | - upstream_bps: |
| 59 | node: default_bp |
| 60 | relationship: tosca.relationships.BelongsToOne |
| 61 | - downstream_bps: |
| 62 | node: default_bp |
| 63 | relationship: tosca.relationships.BelongsToOne |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 64 | |
| 65 | onf_subscriber_2: |
| 66 | type: tosca.nodes.RCORDSubscriber |
| 67 | properties: |
| 68 | name: Sub_ALPHe3d1cfde |
| 69 | status: pre-provisioned |
| 70 | c_tag: 112 |
| 71 | s_tag: 111 |
| 72 | onu_device: ALPHe3d1cfde |
| 73 | nas_port_id : "PON 1/1/04/1:1.1.1" |
| 74 | circuit_id: foo2 |
| 75 | remote_id: bar2 |
Matteo Scandolo | 1f09aad | 2019-06-18 18:37:36 -0700 | [diff] [blame] | 76 | tech_profile_id: 64 |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 77 | requirements: |
| 78 | - upstream_bps: |
Suchitra Vemuri | 2ce9c60 | 2019-05-24 16:43:10 -0700 | [diff] [blame] | 79 | node: bandwidth2_bp |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 80 | relationship: tosca.relationships.BelongsToOne |
| 81 | - downstream_bps: |
Suchitra Vemuri | 2ce9c60 | 2019-05-24 16:43:10 -0700 | [diff] [blame] | 82 | node: bandwidth2_bp |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 83 | relationship: tosca.relationships.BelongsToOne |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 84 | |
| 85 | onf_subscriber_3: |
| 86 | type: tosca.nodes.RCORDSubscriber |
| 87 | properties: |
Matteo Scandolo | 7d843b7 | 2019-05-13 17:30:38 -0700 | [diff] [blame] | 88 | name: Sub_ISKT71e80080 |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 89 | status: pre-provisioned |
| 90 | c_tag: 113 |
| 91 | s_tag: 111 |
Matteo Scandolo | 7d843b7 | 2019-05-13 17:30:38 -0700 | [diff] [blame] | 92 | onu_device: ISKT71e80080 |
You Wang | a069ccb | 2018-11-13 13:25:59 -0800 | [diff] [blame] | 93 | nas_port_id : "PON 1/1/05/1:1.1.1" |
| 94 | circuit_id: foo3 |
| 95 | remote_id: bar3 |
Matteo Scandolo | 1f09aad | 2019-06-18 18:37:36 -0700 | [diff] [blame] | 96 | tech_profile_id: 64 |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 97 | requirements: |
| 98 | - upstream_bps: |
Suchitra Vemuri | 6f92c7a | 2019-05-17 11:56:24 -0700 | [diff] [blame] | 99 | node: bandwidth2_bp |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 100 | relationship: tosca.relationships.BelongsToOne |
| 101 | - downstream_bps: |
Suchitra Vemuri | 6f92c7a | 2019-05-17 11:56:24 -0700 | [diff] [blame] | 102 | node: bandwidth2_bp |
Suchitra Vemuri | 3226e4e | 2019-04-30 18:30:35 -0700 | [diff] [blame] | 103 | relationship: tosca.relationships.BelongsToOne |