Scott Baker | 970f24b | 2017-02-13 14:16:40 -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 | 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 |