blob: f54ab9d4de483b683ce366880378bb5149df219b [file] [log] [blame]
Pingping Lin040a7732017-10-05 20:23:40 -07001tosca_definitions_version: tosca_simple_yaml_1_0
2
3imports:
4 - custom_types/xos.yaml
5
6description: shared network config, generated by platform-install
7
8topology_template:
9 node_templates:
10
11# site, fully created in deployment.yaml
12 {{ site_name }}:
13 type: tosca.nodes.Site
14
15# shared network
16 shared_template:
17 type: tosca.nodes.NetworkTemplate
18 properties:
19 visibility: private
20 translation: none
21 vtn_kind: PRIVATE
22
23 shared_network:
24 type: tosca.nodes.network.Network
25 properties:
26 ip_version: 4
27 cidr: 100.0.0.0/24
28 requirements:
29 - network_template:
30 node: shared_template
31 relationship: tosca.relationships.UsesNetworkTemplate
32 - owner:
33 node: {{ site_name }}_shared
34 relationship: tosca.relationships.MemberOfSlice
35
36 {{ site_name }}_shared:
37 description: This slice exists solely to own the private network
38 type: tosca.nodes.Slice
39 properties:
40 network: noauto
41 requirements:
42 - site:
43 node: {{ site_name }}
44 relationship: tosca.relationships.MemberOfSite
45
46