blob: 8d103553616324c1a7c016e5b85e650c80826ce6 [file] [log] [blame]
Matteo Scandolo1760e9b2018-10-08 10:17:51 -07001# 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 Scandolo9d21ae72018-10-09 20:09:29 -070015# 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 Scandolo1760e9b2018-10-08 10:17:51 -070016
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/rcordsubscriber.yaml
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070020 - custom_types/bandwidthprofile.yaml
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070021
22description: Pre-provsion a subscriber
23
24topology_template:
25 node_templates:
26
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070027 default_bp:
28 type: tosca.nodes.BandwidthProfile
29 properties:
30 name: Default
31 must-exist: true
32
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070033 # 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 Scandolo10b3ee82018-10-08 13:51:56 -070039 c_tag: 111
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070040 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 Scandolo47ade5d2019-03-23 08:47:47 -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
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070052
53 shad_2:
54 type: tosca.nodes.RCORDSubscriber
55 properties:
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070056 name: Sub_ALPHe3d1cf9d
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070057 status: pre-provisioned
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070058 c_tag: 112
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070059 s_tag: 222
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070060 onu_device: ALPHe3d1cf9d
61 nas_port_id : "PON 1/1/03/1:1.1.2"
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070062 circuit_id: foo2
63 remote_id: bar2
Matteo Scandolo47ade5d2019-03-23 08:47:47 -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
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