Matteo Scandolo | 0b986e2 | 2018-06-04 14:07:33 -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 @apps.yaml http://192.168.99.100:30007/run |
| 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/onosapp.yaml |
| 20 | - custom_types/onosservice.yaml |
| 21 | - custom_types/serviceinstanceattribute.yaml |
| 22 | description: Configures fabric switches and related ports |
| 23 | topology_template: |
| 24 | node_templates: |
| 25 | service#onos: |
| 26 | type: tosca.nodes.ONOSService |
| 27 | properties: |
| 28 | name: onos |
| 29 | must-exist: true |
| 30 | |
| 31 | |
| 32 | # Local app |
| 33 | dhcp: |
| 34 | type: tosca.nodes.ONOSApp |
| 35 | properties: |
| 36 | name: dhcp |
| 37 | app_id: org.onosproject.dhcp |
| 38 | requirements: |
| 39 | - owner: |
| 40 | node: service#onos |
| 41 | relationship: tosca.relationships.BelongsToOne |
| 42 | |
| 43 | # Remote app |
| 44 | cord-config: |
| 45 | type: tosca.nodes.ONOSApp |
| 46 | properties: |
Matteo Scandolo | 3b67257 | 2018-06-25 14:28:36 -0700 | [diff] [blame^] | 47 | app_id: org.opencord.cord-config |
Matteo Scandolo | 0b986e2 | 2018-06-04 14:07:33 -0700 | [diff] [blame] | 48 | name: cord-config |
| 49 | url: https://oss.sonatype.org/content/repositories/public/org/opencord/cord-config/1.4.0-SNAPSHOT/cord-config-1.4.0-20180604.071543-275.oar |
| 50 | version: 1.4.0.SNAPSHOT |
| 51 | requirements: |
| 52 | - owner: |
| 53 | node: service#onos |
| 54 | relationship: tosca.relationships.BelongsToOne |
| 55 | |
| 56 | # CORD-Configuration |
| 57 | cord-config-attr: |
| 58 | type: tosca.nodes.ServiceInstanceAttribute |
| 59 | properties: |
| 60 | name: /onos/v1/network/configuration/apps/org.opencord.olt |
| 61 | value: > |
| 62 | { |
| 63 | "kafka" : { |
| 64 | "bootstrapServers" : "cord-kafka-kafka.default.svc.cluster.local:9092" |
| 65 | } |
| 66 | } |
| 67 | requirements: |
| 68 | - service_instance: |
| 69 | node: cord-config |
| 70 | relationship: tosca.relationships.BelongsToOne |