blob: b4ad36736188a6205268c02104906747d48ffa67 [file] [log] [blame]
Joey Armstrong003e83e2023-01-09 20:23:48 -05001# Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo1760e9b2018-10-08 10:17:51 -07002#
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
Matteo Scandolof0e232b2019-03-23 09:53:21 -070031 air: 10000
32 cbs: 10000
33 cir: 10000
34 ebs: 10000
35 eir: 10000
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070036
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070037 # Pre-provision the subscriber the subscriber
38 shad_1:
39 type: tosca.nodes.RCORDSubscriber
40 properties:
41 name: Sub_ALPHe3d1cfe3
42 status: pre-provisioned
Matteo Scandolo10b3ee82018-10-08 13:51:56 -070043 c_tag: 111
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070044 s_tag: 222
45 onu_device: ALPHe3d1cfe3
46 nas_port_id : "PON 1/1/03/1:1.1.1"
47 circuit_id: foo1
48 remote_id: bar1
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070049 requirements:
50 - upstream_bps:
51 node: default_bp
52 relationship: tosca.relationships.BelongsToOne
53 - downstream_bps:
54 node: default_bp
55 relationship: tosca.relationships.BelongsToOne
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070056
57 shad_2:
58 type: tosca.nodes.RCORDSubscriber
59 properties:
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070060 name: Sub_ALPHe3d1cf9d
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070061 status: pre-provisioned
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070062 c_tag: 112
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070063 s_tag: 222
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070064 onu_device: ALPHe3d1cf9d
65 nas_port_id : "PON 1/1/03/1:1.1.2"
Matteo Scandolo1760e9b2018-10-08 10:17:51 -070066 circuit_id: foo2
67 remote_id: bar2
Matteo Scandolo47ade5d2019-03-23 08:47:47 -070068 requirements:
69 - upstream_bps:
70 node: default_bp
71 relationship: tosca.relationships.BelongsToOne
72 - downstream_bps:
73 node: default_bp
74 relationship: tosca.relationships.BelongsToOne
75
76 shad_3:
77 type: tosca.nodes.RCORDSubscriber
78 properties:
79 name: Sub_ALPHe3d1cf8e
80 status: pre-provisioned
81 c_tag: 113
82 s_tag: 222
83 onu_device: ALPHe3d1cf8e
84 nas_port_id : "PON 1/1/03/1:1.1.3"
85 circuit_id: foo3
86 remote_id: bar3
87 requirements:
88 - upstream_bps:
89 node: default_bp
90 relationship: tosca.relationships.BelongsToOne
91 - downstream_bps:
92 node: default_bp
93 relationship: tosca.relationships.BelongsToOne
94
95 shad_4:
96 type: tosca.nodes.RCORDSubscriber
97 properties:
98 name: Sub_ALPHe3d1cf70
99 status: pre-provisioned
100 c_tag: 114
101 s_tag: 222
102 onu_device: ALPHe3d1cf70
103 nas_port_id : "PON 1/1/03/1:1.1.4"
104 circuit_id: foo4
105 remote_id: bar4
106 requirements:
107 - upstream_bps:
108 node: default_bp
109 relationship: tosca.relationships.BelongsToOne
110 - downstream_bps:
111 node: default_bp
112 relationship: tosca.relationships.BelongsToOne
113
114 shad_5:
115 type: tosca.nodes.RCORDSubscriber
116 properties:
117 name: Sub_ALPHe3d1ced5
118 status: pre-provisioned
119 c_tag: 115
120 s_tag: 222
121 onu_device: ALPHe3d1ced5
122 nas_port_id : "PON 1/1/03/1:1.1.5"
123 circuit_id: foo5
124 remote_id: bar5
125 requirements:
126 - upstream_bps:
127 node: default_bp
128 relationship: tosca.relationships.BelongsToOne
129 - downstream_bps:
130 node: default_bp
131 relationship: tosca.relationships.BelongsToOne