Matteo Scandolo | 5eb20bb | 2017-08-08 13:05:26 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | |
Andrea Campanella | 45536f7 | 2017-02-23 15:20:06 +0100 | [diff] [blame] | 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | |
| 19 | # compile this with "m4 vee.m4 > vee.yaml" |
| 20 | |
| 21 | # include macros |
| 22 | include(macros.m4) |
| 23 | |
| 24 | node_types: |
| 25 | |
| 26 | tosca.nodes.VEEService: |
| 27 | description: > |
| 28 | CORD: The vEE Service. |
| 29 | derived_from: tosca.nodes.Root |
| 30 | capabilities: |
| 31 | xos_base_service_caps |
| 32 | properties: |
| 33 | xos_base_props |
| 34 | xos_base_service_props |
| 35 | backend_network_label: |
| 36 | type: string |
| 37 | required: false |
| 38 | description: Label that matches network used to connect HPC and BBS services. |
| 39 | dns_servers: |
| 40 | type: string |
| 41 | required: false |
| 42 | node_label: |
| 43 | type: string |
| 44 | required: false |
| 45 | |
Scott Baker | f07b41a | 2017-10-13 14:24:43 -0700 | [diff] [blame^] | 46 | tosca.nodes.VEEServiceInstance: |
| 47 | derived_from: tosca.nodes.Root |
| 48 | description: > |
| 49 | A VEE Tenant. |
| 50 | properties: |
| 51 | xos_base_tenant_props |
| 52 | s_tag: |
| 53 | type: integer |
| 54 | required: false |
| 55 | c_tag: |
| 56 | type: integer |
| 57 | required: false |