blob: 02cc72c0775dcaef0ee62149993d4d8e7114e1bc [file] [log] [blame]
Matteo Scandolo6050fda2017-02-16 13:01:52 -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 Extension Store
12 gui-extensions-store:
13 type: tosca.nodes.Component
14 properties:
Andy Baviera6cffe12017-03-15 17:33:42 -040015 image: {{ deploy_docker_registry }}node:argon
Matteo Scandolo6050fda2017-02-16 13:01:52 -080016 command: /bin/true
17
18 /var/www/dist/extensions:
19 type: tosca.nodes.ComponentVolume
20 properties:
21 host_path: ""
22 read_only: false
23 requirements:
24 - xos:
25 node: gui-extensions-store
Andy Baviera6cffe12017-03-15 17:33:42 -040026 relationship: tosca.relationships.VolumeOfComponent