blob: caefaea2a7642a1b5593372a9cd76d19a997bbc8 [file] [log] [blame]
Scott Baker5ca4bd12017-02-10 15:17:06 -08001tosca_definitions_version: tosca_simple_yaml_1_0
2
3imports:
4 - custom_types/xos.yaml
5
6description: chameleon component config, generated by platform-install
7
8topology_template:
9 node_templates:
10 xos_chameleon:
11 type: tosca.nodes.Component
12 properties:
13 command: python chameleon/chameleon/main.py -R 9101 -G xos-core:50055
Andy Baviera6cffe12017-03-15 17:33:42 -040014 image: {{ deploy_docker_registry }}xosproject/chameleon:{{ deploy_docker_tag }}
Scott Baker5ca4bd12017-02-10 15:17:06 -080015 ports: 9101:9101
Matteo Scandolo2e419b12017-02-16 13:14:16 -080016
17 chameleon-to-core:
18 type: tosca.nodes.ComponentLink
19 properties:
20 container: xos_core
21 alias: xos-core
22 kind: internal
23 requirements:
24 - xos:
25 node: xos_chameleon
26 relationship: tosca.relationships.LinkOfComponent