blob: 2fb09cdfa5977ab9daacfb6194e7d1b39d1ae85f [file] [log] [blame]
You Wanga069ccb2018-11-13 13:25:59 -08001# 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 Scandolo7d843b72019-05-13 17:30:38 -070015# 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 Wanga069ccb2018-11-13 13:25:59 -080016
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/rcordsubscriber.yaml
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070020 - custom_types/bandwidthprofile.yaml
You Wanga069ccb2018-11-13 13:25:59 -080021
22description: Pre-provsion a subscriber
23
24topology_template:
25 node_templates:
26
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070027 default_bp:
28 type: tosca.nodes.BandwidthProfile
29 properties:
30 name: Default
31 must-exist: true
32
Suchitra Vemuri6f92c7a2019-05-17 11:56:24 -070033 # bandwidth2 bandwidthprofile for subscriber
34 bandwidth2_bp:
35 type: tosca.nodes.BandwidthProfile
36 properties:
37 air: 99999
38 cbs: 99999
39 cir: 99999
40 ebs: 99999
41 eir: 99999
42 name: bandwidth2
43
You Wanga069ccb2018-11-13 13:25:59 -080044 # Pre-provision the subscriber the subscriber
45 onf_subscriber_1:
46 type: tosca.nodes.RCORDSubscriber
47 properties:
48 name: Sub_BRCM22222222
49 status: pre-provisioned
50 c_tag: 111
51 s_tag: 111
52 onu_device: BRCM22222222
53 nas_port_id : "PON 1/1/03/1:1.1.1"
54 circuit_id: foo1
55 remote_id: bar1
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070056 requirements:
57 - upstream_bps:
58 node: default_bp
59 relationship: tosca.relationships.BelongsToOne
60 - downstream_bps:
61 node: default_bp
62 relationship: tosca.relationships.BelongsToOne
You Wanga069ccb2018-11-13 13:25:59 -080063
64 onf_subscriber_2:
65 type: tosca.nodes.RCORDSubscriber
66 properties:
67 name: Sub_ALPHe3d1cfde
68 status: pre-provisioned
69 c_tag: 112
70 s_tag: 111
71 onu_device: ALPHe3d1cfde
72 nas_port_id : "PON 1/1/04/1:1.1.1"
73 circuit_id: foo2
74 remote_id: bar2
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070075 requirements:
76 - upstream_bps:
Suchitra Vemuri2ce9c602019-05-24 16:43:10 -070077 node: bandwidth2_bp
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070078 relationship: tosca.relationships.BelongsToOne
79 - downstream_bps:
Suchitra Vemuri2ce9c602019-05-24 16:43:10 -070080 node: bandwidth2_bp
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070081 relationship: tosca.relationships.BelongsToOne
You Wanga069ccb2018-11-13 13:25:59 -080082
83 onf_subscriber_3:
84 type: tosca.nodes.RCORDSubscriber
85 properties:
Matteo Scandolo7d843b72019-05-13 17:30:38 -070086 name: Sub_ISKT71e80080
You Wanga069ccb2018-11-13 13:25:59 -080087 status: pre-provisioned
88 c_tag: 113
89 s_tag: 111
Matteo Scandolo7d843b72019-05-13 17:30:38 -070090 onu_device: ISKT71e80080
You Wanga069ccb2018-11-13 13:25:59 -080091 nas_port_id : "PON 1/1/05/1:1.1.1"
92 circuit_id: foo3
93 remote_id: bar3
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070094 requirements:
95 - upstream_bps:
Suchitra Vemuri6f92c7a2019-05-17 11:56:24 -070096 node: bandwidth2_bp
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070097 relationship: tosca.relationships.BelongsToOne
98 - downstream_bps:
Suchitra Vemuri6f92c7a2019-05-17 11:56:24 -070099 node: bandwidth2_bp
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -0700100 relationship: tosca.relationships.BelongsToOne