blob: ac50a7163002bb51f97aa49fb565458747fe8775 [file] [log] [blame]
Matteo Scandoloa317b872017-01-10 12:02:41 -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 # command: cd /var/www; BRAND=opencloud npm run build
16 name: xos-spa-gui
17 image: xosproject/xos-gui
18 ports: 4000:4000
Matteo Scandolo622756f2017-01-17 16:33:07 -080019
20 # UI Style Config
21 /var/www/dist/style.config.js:
22 type: tosca.nodes.ComponentVolume
23 properties:
24 host_path: { path_join: [ SELF, CONFIG_DIR, ./ui-style-config.js, ENV_VAR ] }
25 read_only: false
26 requirements:
27 - xos:
28 node: xos-spa-gui
29 relationship: tosca.relationships.VolumeOfComponent
Matteo Scandoloa317b872017-01-10 12:02:41 -080030
31 gui-to-gw:
32 type: tosca.nodes.ComponentLink
33 properties:
34 container: xos-rest-gateway
35 alias: xos-rest-gw
36 kind: internal
37 requirements:
38 - xos:
39 node: xos-spa-gui
40 relationship: tosca.relationships.LinkOfComponent