Matteo Scandolo | a317b87 | 2017-01-10 12:02:41 -0800 | [diff] [blame] | 1 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 2 | |
| 3 | description: Onboard the exampleservice |
| 4 | |
| 5 | imports: |
| 6 | - custom_types/xos.yaml |
| 7 | |
| 8 | topology_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 Scandolo | 622756f | 2017-01-17 16:33:07 -0800 | [diff] [blame] | 19 | |
| 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 Scandolo | a317b87 | 2017-01-10 12:02:41 -0800 | [diff] [blame] | 30 | |
| 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 |