blob: fe56d4cf4a03c277fef2ee4f3cd4f6db63037a01 [file] [log] [blame]
Pingping Linfb629532017-10-12 16:51:41 -07001tosca_definitions_version: tosca_simple_yaml_1_0
2
3imports:
4 - custom_types/xos.yaml
Andy Bavieracc73ec2017-10-20 11:19:20 -07005 - custom_types/site.yaml
6 - custom_types/slice.yaml
7 - custom_types/flavor.yaml
8 - custom_types/network.yaml
9 - custom_types/networktemplate.yaml
Pingping Linfb629532017-10-12 16:51:41 -070010
11description: network for south bound interface (sbi)
12
13topology_template:
14 node_templates:
15
16# site, fully created in deployment.yaml
17 {{ site_name }}:
18 type: tosca.nodes.Site
Andy Bavieracc73ec2017-10-20 11:19:20 -070019 properties:
20 name: {{ site_name }}
Pingping Linfb629532017-10-12 16:51:41 -070021
22# sbi network
23 sbi_template:
24 type: tosca.nodes.NetworkTemplate
25 properties:
Andy Bavieracc73ec2017-10-20 11:19:20 -070026 name: sbi_template
Pingping Linfb629532017-10-12 16:51:41 -070027 visibility: private
28 translation: none
29 vtn_kind: PRIVATE
30
31 sbi_network:
Andy Bavieracc73ec2017-10-20 11:19:20 -070032 type: tosca.nodes.Network
Pingping Linfb629532017-10-12 16:51:41 -070033 properties:
Andy Bavieracc73ec2017-10-20 11:19:20 -070034 name: sbi_network
35 subnet: 114.0.0.0/24
36 permit_all_slices: true
Pingping Linfb629532017-10-12 16:51:41 -070037 requirements:
Andy Bavieracc73ec2017-10-20 11:19:20 -070038 - template:
Pingping Linfb629532017-10-12 16:51:41 -070039 node: sbi_template
Andy Bavieracc73ec2017-10-20 11:19:20 -070040 relationship: tosca.relationships.BelongsToOne
Pingping Linfb629532017-10-12 16:51:41 -070041 - owner:
42 node: {{ site_name }}_sbi
Andy Bavieracc73ec2017-10-20 11:19:20 -070043 relationship: tosca.relationships.BelongsToOne
Pingping Linfb629532017-10-12 16:51:41 -070044
45 {{ site_name }}_sbi:
46 description: This slice exists solely to own the private network
47 type: tosca.nodes.Slice
48 properties:
Andy Bavieracc73ec2017-10-20 11:19:20 -070049 name: {{ site_name }}_sbi
50 default_isolation: vm
Pingping Linfb629532017-10-12 16:51:41 -070051 network: noauto
52 requirements:
53 - site:
54 node: {{ site_name }}
Andy Bavieracc73ec2017-10-20 11:19:20 -070055 relationship: tosca.relationships.BelongsToOne
Pingping Linfb629532017-10-12 16:51:41 -070056