blob: f4ff477d816c10d32b170b808c3464da0af2e5bb [file] [log] [blame]
Daniele Moro134b8d62020-01-14 11:32:05 -08001# Copyright 2020-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.yaml http://192.168.99.100:30007/run
16
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/dtworkflowdriverwhitelistentry.yaml
20 - custom_types/dtworkflowdriverservice.yaml
21description: Create an entry in the whitelist
22topology_template:
23 node_templates:
24
25 service#dtworkflow:
26 type: tosca.nodes.DtWorkflowDriverService
27 properties:
28 name: dt-workflow-driver
29 must-exist: true
30
31 whitelist:
32 type: tosca.nodes.DtWorkflowDriverWhiteListEntry
33 properties:
34 serial_number: BRCM22222222
35 pon_port_id: 536870912
36 device_id: of:000000000a5a0072
37 requirements:
38 - owner:
39 node: service#dtworkflow
40 relationship: tosca.relationships.BelongsToOne