This repository was archived by the owner on Aug 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.yaml
75 lines (68 loc) · 2.85 KB
/
plugin.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
##################################################################################
# Cloudify Bash built in types and plugins definitions.
##################################################################################
plugins:
bash:
executor: host_agent
source: https://github.com/cloudify-cosmo/cloudify-bash-plugin/archive/1.3.zip
node_types:
# A web server configured with bash scripts
cloudify.types.bash.web_server:
derived_from: cloudify.types.web_server
interfaces:
cloudify.interfaces.lifecycle:
- create: bash.bash_runner.tasks.run
- configure: bash.bash_runner.tasks.run
- start: bash.bash_runner.tasks.run
- stop: bash.bash_runner.tasks.run
- delete: bash.bash_runner.tasks.run
properties:
scripts: {}
# An app server configured with bash scripts
cloudify.types.bash.app_server:
derived_from: cloudify.types.app_server
interfaces:
cloudify.interfaces.lifecycle:
- create: bash.bash_runner.tasks.run
- configure: bash.bash_runner.tasks.run
- start: bash.bash_runner.tasks.run
- stop: bash.bash_runner.tasks.run
- delete: bash.bash_runner.tasks.run
properties:
scripts: {}
# A db server configured with bash scripts
cloudify.types.bash.db_server:
derived_from: cloudify.types.db_server
interfaces:
cloudify.interfaces.lifecycle:
- create: bash.bash_runner.tasks.run
- configure: bash.bash_runner.tasks.run
- start: bash.bash_runner.tasks.run
- stop: bash.bash_runner.tasks.run
- delete: bash.bash_runner.tasks.run
properties:
scripts: {}
# A message bus server configured with bash scripts
cloudify.types.bash.message_bus_server:
derived_from: cloudify.types.message_bus_server
interfaces:
cloudify.interfaces.lifecycle:
- create: bash.bash_runner.tasks.run
- configure: bash.bash_runner.tasks.run
- start: bash.bash_runner.tasks.run
- stop: bash.bash_runner.tasks.run
- delete: bash.bash_runner.tasks.run
properties:
scripts: {}
# An app module configured with bash scripts
cloudify.types.bash.app_module:
derived_from: cloudify.types.app_module
interfaces:
cloudify.interfaces.lifecycle:
- create: bash.bash_runner.tasks.run
- configure: bash.bash_runner.tasks.run
- start: bash.bash_runner.tasks.run
- stop: bash.bash_runner.tasks.run
- delete: bash.bash_runner.tasks.run
properties:
scripts: {}