-
Notifications
You must be signed in to change notification settings - Fork 0
/
service_types.yaml
268 lines (245 loc) · 9.41 KB
/
service_types.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
##################################################################################
# Cloudify Package Installer Plugin Types
# Author: kemi
##################################################################################
tosca_definitions_version: cloudify_dsl_1_1
node_types:
##################################################################################
# Service Types
##################################################################################
##################################################################################
# Simple Java Type
# Java type that can be used to install and control Java on a provisioned node.
##################################################################################
cloudify.nodes.Java:
derived_from: cloudify.nodes.PackageInstaller
properties:
service_name:
default: 'java'
version:
default: '7'
config:
default:
package_list:
# Install Java
- { concat: [ 'openjdk-', { get_property: [ SELF, version ] }, '-jdk' ]}
##################################################################################
# AppServer Type
# AppServer type that can be used to install and control an AppServer node.
# The implementation uses: "sudo service <service_name> start / stop / restart"
# to control the service operation
##################################################################################
cloudify.nodes.appserver:
derived_from: cloudify.nodes.ServiceInstaller
properties:
service_name:
default: 'appserver'
version:
default: '3.0'
config:
default:
package_list:
- 'https://github.com/appserver-io/appserver/releases/download/1.0.6/appserver-dist-1.0.6-12.el7.centos.x86_64.rpm'
- 'https://github.com/appserver-io/appserver/releases/download/1.0.6/appserver-dist_1.0.6-13.deb8_amd64.deb'
##################################################################################
# Graphana Type
# Graphana type that can be used to install and control a Graphana node.
# The implementation uses: "sudo service <service_name> start / stop / restart"
# to control the service operation
##################################################################################
cloudify.nodes.Graphana:
derived_from: cloudify.nodes.ServiceInstaller
properties:
service_name:
default: 'grafana-server'
version:
default: '2.1.3'
config:
default:
package_list:
- 'libfontconfig'
- 'adduser'
- { concat: ['https://grafanarel.s3.amazonaws.com/builds/grafana_', { get_property: [ SELF, version ]}, '_amd64.deb']}
##################################################################################
# Graphana Type
# Graphana type that can be used to install and control a Graphana node.
# The implementation uses: "sudo service <service_name> start / stop / restart"
# to control the service operation
##################################################################################
cloudify.nodes.Kibana:
derived_from: cloudify.nodes.ServiceInstaller
properties:
service_name:
default: 'kibana'
version:
default: '2.1.3'
config:
default:
package_list:
- 'https://grafanarel.s3.amazonaws.com/builds/grafana_2.1.3_amd64.deb'
##################################################################################
# Postgres Type
# Postgres type that can be used to install and control a Postgres node.
# The implementation uses: "sudo service <service_name> start / stop / restart"
# to control the service operation
##################################################################################
cloudify.nodes.Postgres:
derived_from: cloudify.nodes.ServiceInstaller
properties:
service_name:
default: 'postgres'
version:
default: '9.4'
config:
default:
package_list:
- { concat: [ 'postgresql-', { get_property: [ SELF, version ] } ] }
##################################################################################
# MySQL Server Type
# MySQL Server type that can be used to install and control a MySQL node.
# The implementation uses: "sudo service <service_name> start / stop / restart"
# to control the service operation
##################################################################################
cloudify.nodes.MySQLServer:
derived_from: cloudify.nodes.ServiceInstaller
properties:
service_name:
default: 'mysql'
version:
default: '5.5'
config:
default:
package_list:
- 'mysql-server'
##################################################################################
# Redis Type
# Redis type that can be used to install and control a Redis node.
# The implementation uses: "sudo service <service_name> start / stop / restart"
# to control the service operation
##################################################################################
cloudify.nodes.Redis:
derived_from: cloudify.nodes.ServiceInstaller
properties:
service_name:
default: 'redis-server'
version:
default: '3.0.3'
config:
default:
package_list:
- 'redis-server'
##################################################################################
# NodeJS Server Type
# NodeJS Server type that can be used to install and control a NodeJS instance.
# The implementation uses: "sudo service <service_name> start / stop / restart"
# to control the service operation
##################################################################################
cloudify.nodes.NodeJSServer:
derived_from: cloudify.nodes.ServiceInstaller
properties:
service_name:
default: 'nodejs'
version:
default: '0.12.7'
config:
default:
package_list:
- 'nodejs'
##################################################################################
# InfluxDB Type
# InfluxDB type that can be used to install and control an InfluxDB node.
# The implementation uses: "sudo service <service_name> start / stop / restart"
# to control the service operation
##################################################################################
cloudify.nodes.InfluxDB:
derived_from: cloudify.nodes.ServiceInstaller
properties:
service_name:
default: 'influxdb'
version:
default: '0.9.2'
influx_config:
default:
admin_port: 8083
api_port: 8086
external_config_file:
config:
default:
package_list:
- { concat: [ 'http://influxdb.s3.amazonaws.com/influxdb_', { get_property: [ SELF, version ] }, '_amd64.deb'] }
###################################################################################
## Application Types
###################################################################################
#
# ##################################################################################
# # Application Installer Type
# # TODO: Implementation
# ##################################################################################
#
# cloudify.nodes.AppInstaller:
# derived_from: cloudify.nodes.ApplicationModule
# properties:
# name:
# default: 'Application Node'
# version:
# default: '1.0'
# package_list:
# default: None
# description: >
# Provide a list of packages, RPM or DEB files to install
# app_server:
# description: >
# Name of the application server hosting this app
# application_binary:
# description: >
# The application binary to deploy
#
# ###########################################################
# # Nodecellar application.
# #
# # This is the actual application source files.
# # configurable properties:
# # - port
# # - application url
# # - startup script
# ###########################################################
#
# cloudify.nodes.NodeJSApplication:
# derived_from: cloudify.nodes.ApplicationModule
# properties:
# port:
# description: Web application port
# type: integer
# application_url:
# description: >
# URL to an archive containing the application source.
# The archive must contain one top level directory.
# default: https://github.com/cloudify-cosmo/nodecellar/archive/master.tar.gz
# startup_script:
# description: >
# This script will be used to start the nodejs application.
# The path is relative to the top level single directory inside
# the archive
# type: string
# default: server.js
# interfaces:
# cloudify.interfaces.lifecycle:
# configure: scripts/nodecellar/install-nodecellar-app.sh
# start: scripts/nodecellar/start-nodecellar-app.sh
# stop: scripts/nodecellar/stop-nodecellar-app.sh
#
#relationships:
# service.contained_in:
# derived_from: cloudify.relationships.contained_in
# properties:
# service_name:
# default: 'service'
# target_interfaces:
# cloudify.interfaces.relationship_lifecycle:
# postconfigure:
# implementation: package_installer.package_installer_plugin.service_relationships.contained_in
# inputs:
# service_name:
# default: { get_property: [ SELF, service_name ] }
# description: >
# Name of the service to stop