blob: 65acc9a0c70fcfa3a00f94fe85150399b2167b46 [file] [log] [blame]
mcord3e589142017-05-24 16:05:07 -07001tosca_definitions_version: tosca_simple_yaml_1_0
2
3description: created by platform-install, need to add M-CORD services later
4
5imports:
6 - custom_types/xos.yaml
7
8topology_template:
9 node_templates:
10
11# site, image, fully created in deployment.yaml
12 {{ site_name }}:
13 type: tosca.nodes.Site
14
15 image#vsg-1.1:
16 type: tosca.nodes.Image
17
18# management networks, fully created in management-net.yaml
19 management:
20 type: tosca.nodes.network.Network.XOS
21 properties:
22 no-create: true
23 no-delete: true
24 no-update: true
25
26{% if use_management_hosts %}
27 management_hosts:
28 type: tosca.nodes.network.Network.XOS
29 properties:
30 no-create: true
31 no-delete: true
32 no-update: true
33{% endif %}
34
35# ONOS_CORD, fully created in vtn.yaml
36 service#ONOS_CORD:
37 type: tosca.nodes.ONOSService
38 properties:
39 no-delete: true
40 no-create: true
41 no-update: true
42
43# ONOS_Fabric, fully created in fabric.yaml
44 service#ONOS_Fabric:
45 type: tosca.nodes.ONOSService
46 properties:
47 no-delete: true
48 no-create: true
49 no-update: true
50
51# CORD Services, add later