blob: bffb9ce9f3a32f029c0ec5f80f36bfb6fbf6e1e1 [file] [log] [blame]
Scott Baker8ed63bb2016-07-07 14:20:08 -07001tosca_definitions_version: tosca_simple_yaml_1_0
2
3description: Onboard the exampleservice
4
5imports:
6 - custom_types/xos.yaml
7
8topology_template:
9 node_templates:
10 xos:
11 type: tosca.nodes.XOS
12 properties:
13 ui_port: 9999
14 bootstrap_ui_port: 9998
15 docker_project_name: devel
16 db_container_name: develbs_xos_db_1
17 frontend_only: true
18
19 /opt/xos/xos_configuration/xos_common_config:
20 type: tosca.nodes.XOSVolume
21 properties:
22 host_path: { path_join: [ SELF, CONFIG_DIR, ../common/xos_common_config, ENV_VAR ] }
23 read_only: false
24 requirements:
25 - xos:
26 node: xos
27 relationship: tosca.relationships.UsedByXOS
28
29 /root/setup:
30 type: tosca.nodes.XOSVolume
31 properties:
32 host_path: { path_join: [ SELF, CONFIG_DIR, ../setup, ENV_VAR ] }
33 read_only: false
34 requirements:
35 - xos:
36 node: xos
37 relationship: tosca.relationships.UsedByXOS