blob: b272abf4649881c83a013cc1b2a2c2b0998f3848 [file] [log] [blame]
Scott Baker619de672016-06-20 12:49:38 -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
12 properties:
Scott Bakerd811ba42016-06-20 16:55:53 -070013 base_url: file:///opt/xos_services/exampleservice/xos/
Scott Baker619de672016-06-20 12:49:38 -070014 # The following will concatenate with base_url automatically, if
15 # base_url is non-null.
16 models: models.py
17 admin: admin.py
18 synchronizer: synchronizer/manifest
19 tosca_custom_types: exampleservice.yaml
20 tosca_resource: tosca/resources/exampleservice.py, tosca/resources/exampletenant.py
21 rest_service: api/service/exampleservice.py
22 rest_tenant: api/tenant/exampletenant.py
23 private_key: file:///opt/xos/key_import/exampleservice_rsa
24 public_key: file:///opt/xos/key_import/exampleservice_rsa.pub
25