blob: 270ad3de57b2cd447a0cd28f3da635f603a66a8c [file] [log] [blame]
Pingping Linb7a7d2b2016-08-19 18:11:36 +00001tosca_definitions_version: tosca_simple_yaml_1_0
2
3description: Onboard M-CORD service
4
5imports:
6 - custom_types/xos.yaml
7
8topology_template:
9 node_templates:
10 xos:
11 type: tosca.nodes.XOS
12 properties:
JianHao2f6dca22016-12-22 03:44:52 +000013 ui_port: 8888
Pingping Linb7a7d2b2016-08-19 18:11:36 +000014 bootstrap_ui_port: 81
15 docker_project_name: mcord
16 db_container_name: mcordbs_xos_db_1
JianHao2f6dca22016-12-22 03:44:52 +000017 redis_container_name: mcordbs_xos_redis_1
Pingping Linfbfc4282016-11-09 16:37:10 -080018 extra_hosts: controller:10.128.13.3, onos-cord:10.102.81.101, computeBBU1:10.102.81.6, computeBBU2:10.102.81.7, compute9:10.102.81.9
Pingping Linb7a7d2b2016-08-19 18:11:36 +000019
20 /opt/xos/xos_configuration/xos_common_config:
21 type: tosca.nodes.XOSVolume
22 properties:
23 host_path: { path_join: [ SELF, CONFIG_DIR, ../common/xos_common_config, ENV_VAR ] }
24 read_only: true
25 requirements:
26 - xos:
27 node: xos
28 relationship: tosca.relationships.UsedByXOS
29
Matteo Scandolo53e3e3b2016-09-22 14:53:50 -070030 /opt/xos/xos_configuration/xos_mcord_config:
Pingping Linb7a7d2b2016-08-19 18:11:36 +000031 type: tosca.nodes.XOSVolume
32 properties:
Matteo Scandolo53e3e3b2016-09-22 14:53:50 -070033 host_path: { path_join: [ SELF, CONFIG_DIR, xos_mcord_config, ENV_VAR ] }
Pingping Linb7a7d2b2016-08-19 18:11:36 +000034 read_only: true
35 requirements:
36 - xos:
37 node: xos
38 relationship: tosca.relationships.UsedByXOS
39
40 /opt/xos/xos_configuration/xos_vtn_config:
41 type: tosca.nodes.XOSVolume
42 properties:
43 host_path: { path_join: [ SELF, CONFIG_DIR, files/xos_vtn_config, ENV_VAR ] }
44 read_only: true
45 requirements:
46 - xos:
47 node: xos
48 relationship: tosca.relationships.UsedByXOS
49
50 /root/setup:
51 type: tosca.nodes.XOSVolume
52 properties:
53 host_path: { path_join: [ SELF, CONFIG_DIR, ., ENV_VAR ] }
54 read_only: true
55 requirements:
56 - xos:
57 node: xos
58 relationship: tosca.relationships.UsedByXOS
59
60 /opt/xos/images:
61 type: tosca.nodes.XOSVolume
62 properties:
63 host_path: { path_join: [ SELF, CONFIG_DIR, images, ENV_VAR ] }
64 read_only: true
65 requirements:
66 - xos:
67 node: xos
68 relationship: tosca.relationships.UsedByXOS