blob: 4a5dfd1752f19bed0879b522f4184a80ed865ff7 [file] [log] [blame]
Zack Williams4a830ed2018-01-18 09:55:27 -07001---
Andy Bavier01685f82017-12-21 14:06:54 -07002{#
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16#}
17
Andy Bavier01685f82017-12-21 14:06:54 -070018tosca_definitions_version: tosca_simple_yaml_1_0
19
20imports:
21 - custom_types/veeservice.yaml
22 - custom_types/vegservice.yaml
23 - custom_types/networktemplate.yaml
24 - custom_types/servicedependency.yaml
25
Zack Williams4a830ed2018-01-18 09:55:27 -070026description: vee services, generated by ecord profile
Andy Bavier01685f82017-12-21 14:06:54 -070027
28topology_template:
29 node_templates:
30
31 service#veg:
32 type: tosca.nodes.VEGService
33 requirements:
34 properties:
35 name: veg
36 must-exist: true
37
38 service#vee:
39 type: tosca.nodes.VEEService
40 properties:
41 name: vee
42
43 veg_vee:
44 type: tosca.nodes.ServiceDependency
45 properties:
46 connect_method: None
47 requirements:
48 - subscriber_service:
49 node: service#veg
50 relationship: tosca.relationships.BelongsToOne
51 - provider_service:
52 node: service#vee
53 relationship: tosca.relationships.BelongsToOne
54
Zack Williams4a830ed2018-01-18 09:55:27 -070055 vee_template:
Andy Bavier01685f82017-12-21 14:06:54 -070056 type: tosca.nodes.NetworkTemplate
57 properties:
Zack Williams4a830ed2018-01-18 09:55:27 -070058 name: vee_template
Andy Bavier01685f82017-12-21 14:06:54 -070059 visibility: private
60 translation: none
61 vtn_kind: vee
62