blob: 1e854e243b654a8e73fe7a6a9c420dfc35899ace [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 Scandoloe9fb2542019-06-26 17:18:23 -070027 high_speed_bp:
28 type: tosca.nodes.BandwidthProfile
29 properties:
30 air: 100000
31 cbs: 2000
32 cir: 5000
33 ebs: 2000
34 eir: 3000
35 name: Bronze
Matteo Scandolo45874602019-04-30 15:50:32 -070036
teonee9ff4862018-11-29 14:36:50 -080037 # EdgeCore OLT subscribers
teonee9ff4862018-11-29 14:36:50 -080038 edgecore_iskratel_subscriber:
39 type: tosca.nodes.RCORDSubscriber
40 properties:
Matteo Scandolo36687062019-04-30 11:44:31 -070041 name: Sub_ISKT71e801a0
teonee9ff4862018-11-29 14:36:50 -080042 status: pre-provisioned
43 c_tag: 12
44 s_tag: 111
Matteo Scandolo36687062019-04-30 11:44:31 -070045 onu_device: ISKT71e801a0
teonee9ff4862018-11-29 14:36:50 -080046 nas_port_id : "PON 1/1/04/1:1.1.1"
47 circuit_id: edgecore_iskratel_circuit
48 remote_id: edgecore_iskratel_remote
Matteo Scandolo1f09aad2019-06-18 18:37:36 -070049 tech_profile_id: 64
Matteo Scandolo9679ae22019-05-29 11:38:25 -070050 requirements:
51 - upstream_bps:
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070052 node: high_speed_bp
Matteo Scandolo9679ae22019-05-29 11:38:25 -070053 relationship: tosca.relationships.BelongsToOne
54 - downstream_bps:
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070055 node: high_speed_bp
Matteo Scandolo9679ae22019-05-29 11:38:25 -070056 relationship: tosca.relationships.BelongsToOne
Matteo Scandolo81a09522019-05-16 12:04:36 -070057
58 edgecore_brcm_subscriber:
59 type: tosca.nodes.RCORDSubscriber
60 properties:
61 name: Sub_BRCM22222222
62 status: pre-provisioned
63 c_tag: 11
64 s_tag: 111
65 onu_device: BRCM22222222
66 nas_port_id : "PON 1/1/04/1:1.1.2"
67 circuit_id: edgecore_brcm_circuit
68 remote_id: edgecore_brcm_remote
Matteo Scandolo1f09aad2019-06-18 18:37:36 -070069 tech_profile_id: 64
Matteo Scandolo9679ae22019-05-29 11:38:25 -070070 requirements:
71 - upstream_bps:
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070072 node: high_speed_bp
Matteo Scandolo9679ae22019-05-29 11:38:25 -070073 relationship: tosca.relationships.BelongsToOne
74 - downstream_bps:
Matteo Scandoloe9fb2542019-06-26 17:18:23 -070075 node: high_speed_bp
Matteo Scandolo9679ae22019-05-29 11:38:25 -070076 relationship: tosca.relationships.BelongsToOne