blob: 62331d0a010ed1ed4d096984b474952bec80a776 [file] [log] [blame]
Scott Bakerdbe340f2016-06-15 13:19:40 -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 frontend_only: true
Scott Baker34883642016-06-15 16:12:31 -070017 source_ui_image: xosproject/xos-test
Scott Bakerdbe340f2016-06-15 13:19:40 -070018
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