Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 1 | # 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.yaml http://192.168.99.100:30007/run |
| 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/hippieossservice.yaml |
| 20 | - custom_types/servicedependency.yaml |
| 21 | - custom_types/voltservice.yaml |
| 22 | description: Create an instance of the OSS Service and connect it to the vOLT Service |
| 23 | topology_template: |
| 24 | node_templates: |
| 25 | service#volt: |
| 26 | type: tosca.nodes.VOLTService |
| 27 | properties: |
| 28 | name: volt |
| 29 | must-exist: true |
| 30 | |
| 31 | service#oss: |
| 32 | type: tosca.nodes.HippieOSSService |
| 33 | properties: |
| 34 | name: hippie-oss |
| 35 | kind: oss |
Scott Baker | 3685b04 | 2018-07-09 12:43:46 -0700 | [diff] [blame] | 36 | # whitelist: BRCM1234, BRCM4321 # this is an optional list of ONUs that you do want to validate |
Matteo Scandolo | b8dec87 | 2018-07-17 16:56:23 -0400 | [diff] [blame^] | 37 | create_on_discovery: false |
Matteo Scandolo | 7529882 | 2018-05-22 11:25:42 -0700 | [diff] [blame] | 38 | |
| 39 | service_dependency#oss_volt: |
| 40 | type: tosca.nodes.ServiceDependency |
| 41 | properties: |
| 42 | connect_method: None |
| 43 | requirements: |
| 44 | - subscriber_service: |
| 45 | node: service#oss |
| 46 | relationship: tosca.relationships.BelongsToOne |
| 47 | - provider_service: |
| 48 | node: service#volt |
| 49 | relationship: tosca.relationships.BelongsToOne |