blob: 5dbef4e3223f2dcfe1db9ffeb7fcd10ec8bf4aca [file] [log] [blame]
Matteo Scandolof5e10332017-08-08 13:05:25 -07001
2{#
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
18
Andy Bavier89a95422016-11-02 14:38:39 -040019tosca_definitions_version: tosca_simple_yaml_1_0
20
21description: Setup a generic slice on the pod
22
23imports:
24 - custom_types/xos.yaml
25
26topology_template:
27 node_templates:
28
29 management:
30 type: tosca.nodes.network.Network.XOS
31 properties:
32 no-create: true
33 no-delete: true
34 no-update: true
35
36 public:
37 type: tosca.nodes.network.Network.XOS
38 properties:
39 no-create: true
40 no-delete: true
41 no-update: true
42
43 {{ local_site }}:
44 type: tosca.nodes.Site
45
46 {{ image }}:
47 type: tosca.nodes.Image
48
49 {{ local_site }}_{{ slice_name }}:
50 description: {{ slice_description }}
51 type: tosca.nodes.Slice
52 properties:
53 network: noauto
54 requirements:
55 - site:
56 node: {{ local_site }}
57 relationship: tosca.relationships.MemberOfSite
58 - management:
59 node: management
60 relationship: tosca.relationships.ConnectsToNetwork
61 - public:
62 node: public
63 relationship: tosca.relationships.ConnectsToNetwork
64 - image:
65 node: {{ image }}
66 relationship: tosca.relationships.DefaultImage