blob: 11881d0f346c35721d72f8a6680c1aa2bcd98363 [file] [log] [blame]
Matteo Scandolo5a0eed22018-06-01 14:42:43 -07001# 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 @oss-service-instance-valid.yaml http://192.168.99.100:30007/run
16
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/hippieossservice.yaml
20 - custom_types/hippieossserviceinstance.yaml
Scott Baker26437eb2018-07-31 16:46:31 -070021 - custom_types/hippieosswhitelistentry.yaml
Matteo Scandolo5a0eed22018-06-01 14:42:43 -070022description: Emulate the call for an VALID ONU
23topology_template:
24 node_templates:
25 service#oss:
26 type: tosca.nodes.HippieOSSService
27 properties:
28 name: hippie-oss
29 must-exist: true
Matteo Scandolo5a0eed22018-06-01 14:42:43 -070030
31 oss_si:
32 type: tosca.nodes.HippieOSSServiceInstance
33 properties:
34 name: valid ONU example
35 of_dpid: "of:1234"
36 serial_number: BRCM1234
Matteo Scandolo5a0eed22018-06-01 14:42:43 -070037
Scott Baker26437eb2018-07-31 16:46:31 -070038 oss_whitelist_BRCM1234:
39 type: tosca.nodes.HippieOSSWhiteListEntry
40 properties:
41 serial_number: BRCM1234 # NOTE: this ONU must exist in the system (check in olt-service examples to create it)
42 requirements:
43 - owner:
44 node: service#oss
45 relationship: tosca.relationships.BelongsToOne