blob: 0f4739a5af69f93ff544aaa6f5aa4275cddd6144 [file] [log] [blame]
Andy Baviere5c60f72017-10-26 10:02:27 -07001tosca_definitions_version: tosca_simple_yaml_1_0
2
3imports:
4 - custom_types/xos.yaml
5 - custom_types/site.yaml
6 - custom_types/slice.yaml
7 - custom_types/flavor.yaml
8 - custom_types/network.yaml
9 - custom_types/networktemplate.yaml
10
11description: network for direct communication between SPGW-C and SPGW-U
12
13topology_template:
14 node_templates:
15
16# site, fully created in deployment.yaml
17 {{ site_name }}:
18 type: tosca.nodes.Site
19 properties:
20 name: {{ site_name }}
21
22# spgw network
23 spgw_template:
24 type: tosca.nodes.NetworkTemplate
25 properties:
26 name: spgw_template
27 visibility: private
28 translation: none
29 vtn_kind: PRIVATE
30
31 spgw_network:
32 type: tosca.nodes.Network
33 properties:
34 name: spgw_network
35 subnet: 117.0.0.0/24
36 permit_all_slices: true
37 requirements:
38 - template:
39 node: spgw_template
40 relationship: tosca.relationships.BelongsToOne
41 - owner:
42 node: {{ site_name }}_spgw
43 relationship: tosca.relationships.BelongsToOne
44
45 {{ site_name }}_spgw:
46 description: This slice exists solely to own the private network
47 type: tosca.nodes.Slice
48 properties:
49 name: {{ site_name }}_spgw
50 default_isolation: vm
51 network: noauto
52 requirements:
53 - site:
54 node: {{ site_name }}
55 relationship: tosca.relationships.BelongsToOne
56