blob: dfcc81a1c0726f78fba75127dbfb6d3948e7879a [file] [log] [blame]
teonee9ff4862018-11-29 14:36:50 -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 @onf-demo-pod-subscriber.yaml http://192.168.100.1:30007/run
16
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/rcordsubscriber.yaml
Matteo Scandolo9679ae22019-05-29 11:38:25 -070020 - custom_types/bandwidthprofile.yaml
teonee9ff4862018-11-29 14:36:50 -080021
22description: Pre-provsion subscribers
23
24topology_template:
25 node_templates:
26
Matteo Scandolo8367cfe2019-06-26 17:31:20 -070027 default:
28 type: tosca.nodes.BandwidthProfile
29 properties:
30 name: Default
31 must-exist: true
32 air: 100000
33 cbs: 30
34 cir: 600
35 ebs: 30
36 eir: 400
37
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070038 high_speed_bp:
39 type: tosca.nodes.BandwidthProfile
40 properties:
41 air: 100000
42 cbs: 2000
43 cir: 5000
44 ebs: 2000
45 eir: 3000
46 name: Bronze
Matteo Scandolo45874602019-04-30 15:50:32 -070047
teonee9ff4862018-11-29 14:36:50 -080048 # EdgeCore OLT subscribers
teonee9ff4862018-11-29 14:36:50 -080049 edgecore_iskratel_subscriber:
50 type: tosca.nodes.RCORDSubscriber
51 properties:
Matteo Scandolo36687062019-04-30 11:44:31 -070052 name: Sub_ISKT71e801a0
teonee9ff4862018-11-29 14:36:50 -080053 status: pre-provisioned
54 c_tag: 12
55 s_tag: 111
Matteo Scandolo36687062019-04-30 11:44:31 -070056 onu_device: ISKT71e801a0
teonee9ff4862018-11-29 14:36:50 -080057 nas_port_id : "PON 1/1/04/1:1.1.1"
58 circuit_id: edgecore_iskratel_circuit
59 remote_id: edgecore_iskratel_remote
Matteo Scandolo1f09aad2019-06-18 18:37:36 -070060 tech_profile_id: 64
Matteo Scandolo9679ae22019-05-29 11:38:25 -070061 requirements:
62 - upstream_bps:
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070063 node: high_speed_bp
Matteo Scandolo9679ae22019-05-29 11:38:25 -070064 relationship: tosca.relationships.BelongsToOne
65 - downstream_bps:
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070066 node: high_speed_bp
Matteo Scandolo9679ae22019-05-29 11:38:25 -070067 relationship: tosca.relationships.BelongsToOne
Matteo Scandolo81a09522019-05-16 12:04:36 -070068
69 edgecore_brcm_subscriber:
70 type: tosca.nodes.RCORDSubscriber
71 properties:
72 name: Sub_BRCM22222222
73 status: pre-provisioned
74 c_tag: 11
75 s_tag: 111
76 onu_device: BRCM22222222
77 nas_port_id : "PON 1/1/04/1:1.1.2"
78 circuit_id: edgecore_brcm_circuit
79 remote_id: edgecore_brcm_remote
Matteo Scandolo1f09aad2019-06-18 18:37:36 -070080 tech_profile_id: 64
Matteo Scandolo9679ae22019-05-29 11:38:25 -070081 requirements:
82 - upstream_bps:
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070083 node: high_speed_bp
Matteo Scandolo9679ae22019-05-29 11:38:25 -070084 relationship: tosca.relationships.BelongsToOne
85 - downstream_bps:
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070086 node: high_speed_bp
Matteo Scandolo9679ae22019-05-29 11:38:25 -070087 relationship: tosca.relationships.BelongsToOne