blob: 99aee0dd3791574a2e2f22c7b97d86b350da0cdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
tosca_definitions_version: tosca_simple_yaml_1_0
imports:
- definitions.yaml
topology_template:
description: Template of online transaction processing service.
node_templates:
mq:
type: example.QueuingSubsystem
# properties:
# to be updated when substitution_mapping is implemented
# capabilities:
# message_queue_endpoint:
# to be updated when substitution_mapping is implemented
requirements:
- receiver1: trans1
- receiver2: trans2
trans1:
type: example.TransactionSubsystem
properties:
# to be updated when substitution_mapping is implemented
# mq_server_ip: { get_attribute: [ mq, server_ip ] }
receiver_port: 8080
# capabilities:
# message_receiver:
# to be updated when substitution_mapping is implemented
requirements:
- database_endpoint: dbsys
trans2:
type: example.TransactionSubsystem
properties:
# to be updated when substitution_mapping is implemented
# mq_server_ip: { get_attribute: [ mq, server_ip ] }
receiver_port: 8080
# capabilities:
# message_receiver:
# to be updated when substitution_mapping is implemented
requirements:
- database_endpoint: dbsys
dbsys:
type: example.DatabaseSubsystem
# properties:
# to be updated when substitution_mapping is implemented
# capabilities:
# database_endpoint:
# to be updated when substitution_mapping is implemented
|