blob: 4b7750adeff371e15115e30c71fbcef06d9ebc86 [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 Scandoloa32ba702019-05-16 14:24:02 -070020 - custom_types/bandwidthprofile.yaml
teonee9ff4862018-11-29 14:36:50 -080021
22description: Pre-provsion subscribers
23
24topology_template:
25 node_templates:
26
Matteo Scandoloa32ba702019-05-16 14:24:02 -070027 default_bp:
28 type: tosca.nodes.BandwidthProfile
29 properties:
30 name: Default
31 must-exist: true
Matteo Scandolo45874602019-04-30 15:50:32 -070032
teonee9ff4862018-11-29 14:36:50 -080033 # EdgeCore OLT subscribers
teonee9ff4862018-11-29 14:36:50 -080034 edgecore_iskratel_subscriber:
35 type: tosca.nodes.RCORDSubscriber
36 properties:
Matteo Scandolo36687062019-04-30 11:44:31 -070037 name: Sub_ISKT71e801a0
teonee9ff4862018-11-29 14:36:50 -080038 status: pre-provisioned
39 c_tag: 12
40 s_tag: 111
Matteo Scandolo36687062019-04-30 11:44:31 -070041 onu_device: ISKT71e801a0
teonee9ff4862018-11-29 14:36:50 -080042 nas_port_id : "PON 1/1/04/1:1.1.1"
43 circuit_id: edgecore_iskratel_circuit
44 remote_id: edgecore_iskratel_remote
Matteo Scandoloa32ba702019-05-16 14:24:02 -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 Scandolo81a09522019-05-16 12:04:36 -070052
53 edgecore_brcm_subscriber:
54 type: tosca.nodes.RCORDSubscriber
55 properties:
56 name: Sub_BRCM22222222
57 status: pre-provisioned
58 c_tag: 11
59 s_tag: 111
60 onu_device: BRCM22222222
61 nas_port_id : "PON 1/1/04/1:1.1.2"
62 circuit_id: edgecore_brcm_circuit
63 remote_id: edgecore_brcm_remote
Matteo Scandoloa32ba702019-05-16 14:24:02 -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