blob: d610cc693d30af3b9afce52a8c008a8f187de9fd [file] [log] [blame]
Matteo Scandolo0b986e22018-06-04 14:07:33 -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 @service.yaml http://192.168.99.100:30007/run
16
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/onosservice.yaml
20 - custom_types/serviceattribute.yaml
21description: Configures fabric switches and related ports
22topology_template:
23 node_templates:
24 service#onos:
25 type: tosca.nodes.ONOSService
26 properties:
27 name: onos
28 rest_hostname: onos-fabric-ui
29 rest_port: 8181
30
31
32 # ONOS Configuration
33 driver:
34 type: tosca.nodes.ServiceAttribute
35 properties:
36 name: /onos/v1/network/configuration/devices/of:1234
37 value: >
38 {
39 "basic": {
40 "driver": "mydriver"
41 }
42 }
43 requirements:
44 - service:
45 node: service#onos
46 relationship: tosca.relationships.BelongsToOne