blob: e05c999ba112ee7cccb36ea7cd3f04e58ad4b521 [file] [log] [blame]
Scott Baker970f24b2017-02-13 14:16:40 -08001tosca_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
11 # UI Container
12 xos-spa-gui:
13 type: tosca.nodes.Component
14 properties:
15 image: xosproject/xos-gui
16 ports: 4000:4000
17
18 gui-to-gw:
19 type: tosca.nodes.ComponentLink
20 properties:
21 container: xos-rest-gateway
22 alias: xos-rest-gw
23 kind: internal
24 requirements:
25 - xos:
26 node: xos-spa-gui
27 relationship: tosca.relationships.LinkOfComponent