Andy Bavier | a6cffe1 | 2017-03-15 17:33:42 -0400 | [diff] [blame] | 1 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 2 | |
| 3 | description: Persist xos-sample-gui-extension |
| 4 | |
| 5 | imports: |
| 6 | - custom_types/xos.yaml |
| 7 | |
| 8 | topology_template: |
| 9 | node_templates: |
| 10 | |
| 11 | # UI Extension |
| 12 | {% for ext in enabled_gui_extensions %} |
| 13 | {{ext.name}}: |
| 14 | type: tosca.nodes.XOSGuiExtension |
| 15 | properties: |
Max Chu | 0068b83 | 2017-07-28 11:03:40 -0700 | [diff] [blame] | 16 | files: /xos/extensions/{{ext.name}}/vendor.js, /xos/extensions/{{ext.name}}/app.js |
Andy Bavier | a6cffe1 | 2017-03-15 17:33:42 -0400 | [diff] [blame] | 17 | {% endfor %} |