blob: b26f53a59dac9ccfff93b29378ec804f405d776e (
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
|
tosca_definitions_version: tosca_simple_yaml_1_1
imports:
- examples: tosca/tosca-examples-types.yaml
topology_template:
node_templates:
my_server:
type: tosca.nodes.Compute
db:
type: tosca.nodes.DBMS.MySQL
requirements:
- host: my_server
interfaces:
Standard:
stop: stop.sh
workflows:
backup:
description: Performs a snapshot of the MySQL data.
preconditions:
- target: my_server
condition:
- assert:
- state: [{equal: available}]
- target: my_server
condition:
- assert:
- state: [{valid_values: [started, available]}]
- my_attribute: [{equal: ready }]
steps:
backup_step:
target: db
filter: # filter is a list of clauses. Matching between clauses is and.
- or: # only one of sub-clauses must be true.
- assert:
- foo: [{equals: true}]
- assert:
- bar: [{greater_than: 2}, {less_than: 20}]
activities:
- call_operation: Standard.stop
|