blob: 9999a38103696fae71e9af865bd649422129404b [file] [log] [blame]
Scott Baker6db2de22016-05-26 21:33:55 -07001tosca_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 exampleservice:
11 type: tosca.nodes.ServiceController
Scott Baker5cf398b2016-05-26 22:21:25 -070012 properties:
Scott Bakerb0eb23e2016-06-01 16:08:04 -070013 base_url: file:///opt/xos/onboard/exampleservice/
Scott Baker03d486e2016-05-26 22:51:53 -070014 # The following will concatenate with base_url automatically, if
15 # base_url is non-null.
16 models: models.py
17 admin: admin.py
Scott Bakeracfe60a2016-06-02 11:31:47 -070018 synchronizer: synchronizer/manifest
Scott Baker03d486e2016-05-26 22:51:53 -070019 tosca_custom_types: exampleservice.yaml
Scott Baker12cbb062016-06-10 13:39:47 -070020 tosca_resource: tosca/resources/exampleservice.py, tosca/resources/exampletenant.py
Scott Baker16cfb9c2016-06-07 15:37:03 -070021 rest_service: api/service/exampleservice.py
Scott Bakerb01d2c92016-06-07 17:44:17 -070022 rest_tenant: api/tenant/exampletenant.py
Scott Baker18c89172016-06-02 16:40:25 -070023 private_key: file:///opt/xos/key_import/exampleservice_rsa
Scott Baker549cb252016-06-02 16:48:51 -070024 public_key: file:///opt/xos/key_import/exampleservice_rsa.pub
Scott Baker16cfb9c2016-06-07 15:37:03 -070025