-
Notifications
You must be signed in to change notification settings - Fork 20
/
manifest.yml
437 lines (405 loc) · 12.4 KB
/
manifest.yml
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
launch:
parameters:
- app-tier-size:
description: Number of servers in app tier
default: 1
min: 1
max: 20
- app-fork: &app-fork
description: Source control fork
default: "dieu"
- app-branch: &app-branch
description: Source control branch
default: "HEAD"
steps:
- db-tier:
action: .compute.grow
parameters:
roleName: db-node
output:
db-hosts: ips
- app-tier:
action: .compute.grow
parameters:
roleName: app-node
quantity: ${app-tier-size}
output:
app-hosts: ips
- lb-tier:
action: .compute.grow
parameters:
roleName: lb-node
output:
lb-hosts: ips
- database:
action: .deploy.db
precedingPhases: [ provision ]
phase: deploy-db
parameters:
app-fork: ${app-fork}
app-branch: ${app-branch}
- lb-install:
action: "chefrun"
precedingPhases: [ provision ]
phase: install-lb
parameters:
roles: [ lb-node ]
runList: ["recipe[haproxy]"]
isSolo: true
recipeUrl: "https://github.com/qubell/cookbooks/raw/0.1/cookbooks.tar.gz"
- app:
action: .install.app
precedingPhases: [ provision ]
phase: deploy-app
parameters:
db-hosts: ${db-hosts}
app-hosts: ${app-hosts}
app-fork: ${app-fork}
app-branch: ${app-branch}
return:
db-hosts:
description: Database IP address
value: ${db-hosts}
app-hosts:
description: Application IP address
value: ${app-hosts}
lb-hosts:
description: Loab Balancer IP address
value: ${lb-hosts}
app-url:
description: Url to the application
value: "http://{$.lb-tier~hosts[0]}"
haproxy-url:
description: Url to haproxy stats
value: "http://{$.lb-tier~hosts[0]}:22002/"
scale-up:
parameters:
- app-count:
description: Additional servers in app tier
default: 1
min: 1
max: 20
- app-fork: *app-fork
- app-branch: *app-branch
steps:
- app-tier:
action: .compute.grow
parameters:
roleName: app-node
quantity: ${app-count}
output:
app-hosts: ips
- app:
action: .install.app
precedingPhases: [ provision ]
phase: deploy-app
parameters:
db-hosts: ${db-hosts}
app-hosts: ${app-hosts}
app-fork: ${app-fork}
app-branch: ${app-branch}
return:
app-hosts:
description: Application IP address
value: ${app-hosts}
scale-down:
parameters:
- app-count:
description: Number of app tier servers to remove
default: 1
min: 1
max: 20
steps:
- shrink-app-tier:
action: "destroyVms"
parameters:
phase: "destroy"
roleName: app-node
quantity: ${app-count}
- setup-lb:
action: .setup.lb
precedingPhases: [ destroy ]
phase: setup-lb
parameters:
app-hosts: ${app-hosts}
return:
app-hosts:
description: Application IP address
value: ${app-hosts}
update:
parameters:
- app-fork: *app-fork
- app-branch: *app-branch
steps:
- update-app:
action: .deploy.app
parameters:
db-hosts: ${db-hosts}
app-fork: ${app-fork}
app-branch: ${app-branch}
destroy:
steps:
- destroy:
action: compute.shrink-all
.compute.grow:
parameters:
- phase:
default: provision
- roleName:
default: defaultRole
- quantity:
default: 1
- identity:
default: undefined
- credential:
default: undefined
steps:
provision-vms:
action: "provisionVms"
parameters:
phase: ${phase}
roleName: ${roleName}
hardwareId: m1.small
quantity: ${quantity}
retryCount: 1
jcloudsProvider: aws-ec2
jcloudsEndpoint: https://ec2.us-east-1.amazonaws.com
jcloudsRegions: us-east-1
jcloudsNodeNamePrefix: petclinic
jcloudsIdentity: ${identity}
jcloudsCredential: ${credential}
vmIdentity: ubuntu
imageId: us-east-1/ami-0fac7566
ec2SecurityGroup: default
output:
hosts: ips
return:
ips:
value: ${hosts}
.deploy.db:
parameters:
- app-fork: *app-fork
- app-branch: *app-branch
steps:
- install-database:
action: "chefrun"
phase: install-db
parameters:
roles: [ db-node ]
runList: ["recipe[mysql::server]"]
isSolo: true
recipeUrl: "https://github.com/qubell/cookbooks/raw/0.1/cookbooks.tar.gz"
jattrs:
mysql:
server_root_password: e653e94ee8d064ec95ef5a1381c87a23
server_repl_password: e653e94ee8d064ec95ef5a1381c87a23
server_debian_password: e653e94ee8d064ec95ef5a1381c87a23
- deploy-database:
action: "chefrun"
phase: deploy-db
precedingPhases: [ install-db ]
parameters:
roles: [ db-node ]
runList: ["recipe[war::mysql]"]
isSolo: true
recipeUrl: "https://github.com/qubell/cookbooks/raw/0.1/cookbooks.tar.gz"
jattrs:
database:
name: "petclinic"
schema: "https://raw.github.com/${app-fork}/petclinic/${app-branch}/src/main/resources/db/mysql/petclinic-mysql-schema.sql"
data: "https://raw.github.com/${app-fork}/petclinic/${app-branch}/src/main/resources/db/mysql/petclinic-mysql-dataload.sql"
.deploy.app:
parameters:
- db-hosts:
description: Database IP address
- app-fork: *app-fork
- app-branch: *app-branch
steps:
- deploy-app:
action: "chefrun"
phase: deploy-app
parameters:
roles: [ app-node ]
runList: ["recipe[war]"]
isSolo: true
recipeUrl: "https://github.com/qubell/cookbooks/raw/0.1/cookbooks.tar.gz"
jattrs:
war:
deploy:
git:
url: git://github.com/${app-fork}/petclinic.git
revision: ${app-branch}
- configure-datasource:
action: "chefrun"
phase: configure-app
precedingPhases: [ deploy-app ]
parameters:
roles: [ app-node ]
runList: ["recipe[war::configure]"]
isSolo: true
recipeUrl: "https://github.com/qubell/cookbooks/raw/0.1/cookbooks.tar.gz"
jattrs:
configure:
source: "https://raw.github.com/${app-fork}/petclinic/${app-branch}/src/main/resources/db/mysql/petclinic-database.properties.erb"
to: "classes/jdbc.properties"
variables:
hosts: ${db-hosts}
database: "petclinic"
.setup.lb:
parameters:
- app-hosts:
description: Application IP address
steps:
- setup-lb:
action: "chefrun"
parameters:
roles: [ lb-node ]
runList: ["recipe[war::lb]"]
isSolo: true
recipeUrl: "https://github.com/qubell/cookbooks/raw/0.1/cookbooks.tar.gz"
jattrs:
haproxy.rebalance:
nodes: ${app-hosts}
.install.app:
parameters:
- db-hosts:
description: Database IP address
- app-hosts:
description: Application IP address
- app-fork: *app-fork
- app-branch: *app-branch
steps:
- install-app:
action: "chefrun"
phase: install-app
parameters:
roles: [ app-node ]
runList: ["recipe[tomcat]"]
isSolo: true
recipeUrl: "https://github.com/qubell/cookbooks/raw/0.1/cookbooks.tar.gz"
- deploy:
action: .deploy.app
phase: deploy-app
precedingPhases: [ install-app ]
parameters:
db-hosts: ${db-hosts}
app-fork: ${app-fork}
app-branch: ${app-branch}
- setup-lb:
action: .setup.lb
precedingPhases: [ deploy-app ]
phase: setup-lb
parameters:
app-hosts: ${app-hosts}
# =========== TESTING ==========
test:
parameters:
- flavour: &flavour
description: ami-flavour
default: ubuntu10
- app-fork: *app-fork
- app-branch: *app-branch
- grid-remote:
description: Selenium Grid
default: x.x.x.x:4444
steps:
- ume:
action: _undeployme
phase: injection
output:
entry: entry
auth: auth
appId: appId
orgId: orgId
envId: envId
- rest-call:
action: restcall
precedingPhases: [ injection ]
parameters:
roles: [any]
command: "{$.entry}api/1/applications/{$.appId}/launch"
method: POST
body:
!
'{{
"environmentId": "{$.envId}",
"instanceName": "Petclinic-tester {$.flavour}",
"destroyInterval": "3600000",
"base-url": "{$.app-url}",
"grid-remote": "{$.grid-remote}",
"app-fork": "{$.app-fork}",
"app-branch": "{$.app-branch}",
"flavour": "{$.flavour}"
}}'
acceptAllCertificates: true
auth: "{$.auth}"
contentType: application/json
headers:
Content-Type: application/json
output:
content: content
return:
tester.url:
description: Url of tester instance
value:
api: "{$.entry}api/1/instances/{$.content.id}"
gui: "{$.entry}organizations/{$.orgId}/instances/{$.content.id}"
retest:
parameters:
- flavour: *flavour
- app-fork: *app-fork
- app-branch: *app-branch
steps:
- ume:
action: _undeployme
phase: injection
output:
entry: entry
auth: auth
instanceId: instanceId
- rest-call:
action: restcall
precedingPhases: [ injection ]
parameters:
roles: [any]
command: "{$.entry}api/1/instances/{$.instanceId}/retest"
method: POST
body:
!
'{{
"base-url": "{$.app-url}",
"app-fork": "{$.app-fork}",
"app-branch": "{$.app-branch}",
"flavour": "{$.flavour}"
}}'
acceptAllCertificates: true
auth: "{$.auth}"
headers:
Content-Type: application/json
output:
content: content
return:
tester.url:
description: Url of tester instance
value:
api: "{$.entry}api/1/instances/{$.instanceId}"
gui: "{$.entry}organizations/{$.orgId}/instances/{$.instanceId}"
#this workflow bypass common parameters
_undeployme:
parameters:
- settings:
description: bunch of settings
steps: []
return:
- entry:
value: "{$.settings.entry}"
- appId:
value: "{$.settings.appId}"
- orgId:
value: "{$.settings.orgId}"
- envId:
value: "{$.settings.envId}"
- instanceId:
value: "{$.settings.instanceId}"
- auth:
value: "{$.settings.auth}"