blob: 85bdd02e75931cecd81cca79b0d39e6309a0a04b [file] [log] [blame]
Scott Baker50421662016-06-27 22:09:48 -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: teststandalone
16 db_container_name: teststandalonebs_xos_db_1
17 frontend_only: true
18 source_ui_image: xosproject/xos-test
19
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: false
25 requirements:
26 - xos:
27 node: xos
28 relationship: tosca.relationships.UsedByXOS