Scott Baker | 8256547 | 2018-08-20 11:40:03 -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 @pon_port.yaml http://192.168.99.100:30007/run |
| 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/fabriccrossconnectservice.yaml |
| 20 | - custom_types/fabriccrossconnectserviceinstance.yaml |
| 21 | description: Create a FabricCrossconnectServiceInstance |
| 22 | topology_template: |
| 23 | node_templates: |
| 24 | service#fabric-crossconnect: |
| 25 | type: tosca.nodes.FabricCrossconnectService |
| 26 | properties: |
| 27 | name: fabric-crossconnect |
| 28 | must-exist: true |
| 29 | |
| 30 | fcsi: |
| 31 | type: tosca.nodes.FabricCrossconnectServiceInstance |
| 32 | properties: |
| 33 | name: "custom_vm_crossconnect" |
| 34 | s_tag: 123 |
| 35 | source_port: 3 |
| 36 | switch_datapath_id: "of:0000000000000201" |
| 37 | requirements: |
| 38 | - owner: |
| 39 | node: service#fabric-crossconnect |
| 40 | relationship: tosca.relationships.BelongsToOne |