blob: bb5e5463b4942759b49725b478917b1f7cfabf23 [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: vsg 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# vsg network
16 vsg_template:
17 type: tosca.nodes.NetworkTemplate
18 properties:
19 visibility: private
20 translation: none
21 vtn_kind: VSG
22
23 vsg_network:
24 type: tosca.nodes.network.Network
25 properties:
26 ip_version: 4
27 cidr: 101.0.0.0/24
28 requirements:
29 - network_template:
30 node: vsg_template
31 relationship: tosca.relationships.UsesNetworkTemplate
32 - owner:
33 node: {{ site_name }}_vsg
34 relationship: tosca.relationships.MemberOfSlice
35
36 {{ site_name }}_vsg:
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