blob: 6b0315022b978059054483361a9b2bef5237125e [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
15# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @onlab-pod1-subscriber.yaml http://10.90.0.101:30007/run
16
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
You Wanga069ccb2018-11-13 13:25:59 -080033 # Pre-provision the subscriber the subscriber
34 onf_subscriber_1:
35 type: tosca.nodes.RCORDSubscriber
36 properties:
37 name: Sub_BRCM22222222
38 status: pre-provisioned
39 c_tag: 111
40 s_tag: 111
41 onu_device: BRCM22222222
42 nas_port_id : "PON 1/1/03/1:1.1.1"
43 circuit_id: foo1
44 remote_id: bar1
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070045 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
You Wanga069ccb2018-11-13 13:25:59 -080052
53 onf_subscriber_2:
54 type: tosca.nodes.RCORDSubscriber
55 properties:
56 name: Sub_ALPHe3d1cfde
57 status: pre-provisioned
58 c_tag: 112
59 s_tag: 111
60 onu_device: ALPHe3d1cfde
61 nas_port_id : "PON 1/1/04/1:1.1.1"
62 circuit_id: foo2
63 remote_id: bar2
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070064 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
You Wanga069ccb2018-11-13 13:25:59 -080071
72 onf_subscriber_3:
73 type: tosca.nodes.RCORDSubscriber
74 properties:
75 name: Sub_ISKT71e801a0
76 status: pre-provisioned
77 c_tag: 113
78 s_tag: 111
79 onu_device: ISKT71e801a0
80 nas_port_id : "PON 1/1/05/1:1.1.1"
81 circuit_id: foo3
82 remote_id: bar3
Suchitra Vemuri3226e4e2019-04-30 18:30:35 -070083 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