blob: 2adc47340f6a7a5a1f74c215f19c9ea510f4d0ea [file] [log] [blame]
Suchitra Vemuric7962292019-02-07 20:33:45 -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
Suchitra Vemuri80140812019-02-07 23:16:19 -080015# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @onlab-pod1-subscriber.yaml http://10.192.20.45:30007/run
Suchitra Vemuric7962292019-02-07 20:33:45 -080016
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/rcordsubscriber.yaml
Suchitra Vemuri7f31fb62019-04-23 12:57:55 -070020 - custom_types/bandwidthprofile.yaml
Suchitra Vemuric7962292019-02-07 20:33:45 -080021
22description: Pre-provsion a subscriber
23
24topology_template:
25 node_templates:
26
Suchitra Vemuri759434e2019-04-22 11:55:36 -070027 default_bp:
28 type: tosca.nodes.BandwidthProfile
29 properties:
30 name: Default
31 must-exist: true
32
Suchitra Vemuric7962292019-02-07 20:33:45 -080033 # Pre-provision the subscriber the subscriber
34 my_house:
35 type: tosca.nodes.RCORDSubscriber
36 properties:
37 name: My House-305
38 status: pre-provisioned
39 s_tag: 111
40 c_tag: 999
41 onu_device: ALPHe3d1cfa7
42 nas_port_id : "PON 1/1/03/1:1.1.1"
43 circuit_id: foo1
44 remote_id: bar1
Suchitra Vemuri759434e2019-04-22 11:55:36 -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