-
Notifications
You must be signed in to change notification settings - Fork 3
/
.drone.yml
377 lines (364 loc) · 8.67 KB
/
.drone.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
pipeline:
restore-cache:
image: plugins/s3-cache:1
pull: true
secrets: [ aws_access_key_id, aws_secret_access_key ]
mount:
- node_modules
restore: true
###
# Test PR
###
update_pr:
image: plugins/git
commands:
- export BRANCH_SRC=origin/${DRONE_COMMIT_REFSPEC%%:*} BRANCH_DST=origin/${DRONE_BRANCH}
- cp -rpf .git .git.bak
- git config --global user.email "[email protected]" && git config --global user.name "Storiqa Common"
- git fetch && git checkout $BRANCH_SRC && git merge --no-commit $BRANCH_DST
- rm -rf .git && mv -f .git.bak .git
when:
event: pull_request
test:
image: node:9.9
environment:
- RUN_MODE=k8s
commands:
- rm -f yarn.lock || true
- . ./.env.test
- yarn -s --no-progress --non-interactive --production=false
- yarn updateSchema
- yarn relay
- yarn ci
when:
event: pull_request
###
# Build and deploy to nightly
###
build4nightly:
image: node:9.9
commands:
- . ./.env.nightly
- rm -f yarn.lock || true
- npm config delete _auth
- yarn -s --no-progress --non-interactive --production=false
- yarn updateSchema
- yarn relay
- yarn build
- yarn server:dist:build
when:
event: push
branch: master
node_package4nightly:
image: plugins/docker
group: package
repo: storiqateam/stq-node
environment:
- TIER=nightly
tags:
- nightly_${DRONE_BRANCH//\//_}
- nightly_${DRONE_BRANCH//\//_}${DRONE_BUILD_NUMBER}
dockerfile: docker/Dockerfile.node
secrets:
- docker_username
- docker_password
when:
event: push
branch: master
static_package4nightly:
image: plugins/docker
group: package
repo: storiqateam/stq-static
tags:
- nightly_${DRONE_BRANCH//\//_}
- nightly_${DRONE_BRANCH//\//_}${DRONE_BUILD_NUMBER}
dockerfile: docker/Dockerfile.static
secrets:
- docker_username
- docker_password
when:
event: push
branch: master
deploy2nightly:
image: jackthestripper/drone_setimage
object: front
kind: deployment
namespace: default
img_names:
- storiqateam/stq-node
- storiqateam/stq-static
img_cnts:
- node
- static
img_tags:
- nightly_${DRONE_BRANCH//\//_}${DRONE_BUILD_NUMBER}
- nightly_${DRONE_BRANCH//\//_}${DRONE_BUILD_NUMBER}
secrets:
- source: k8s_nightly_ca
target: k8s_ca
- source: k8s_nightly_user
target: k8s_user
- source: k8s_nightly_token
target: k8s_token
- source: k8s_nightly_addr
target: k8s_addr
when:
branch: master
event: push
###
# Build and deploy to stable
###
build4stable:
image: node:9.9
commands:
- . ./.env.stable
- rm -f yarn.lock || true
- npm config delete _auth
- yarn -s --no-progress --non-interactive --production=false
- yarn updateSchema
- yarn relay
- yarn build
- yarn server:dist:build
when:
event: deployment
environment: stable
node_package4stable:
image: plugins/docker
group: package
repo: storiqateam/stq-node
environment:
- TIER=stable
tags:
- stable_${DRONE_BRANCH//\//_}
- stable_${DRONE_BRANCH//\//_}${DRONE_BUILD_NUMBER}
dockerfile: docker/Dockerfile.node
secrets:
- docker_username
- docker_password
when:
event: deployment
environment: stable
static_package4stable:
image: plugins/docker
group: package
repo: storiqateam/stq-static
tags:
- stable_${DRONE_BRANCH//\//_}
- stable_${DRONE_BRANCH//\//_}${DRONE_BUILD_NUMBER}
dockerfile: docker/Dockerfile.static
secrets:
- docker_username
- docker_password
when:
event: deployment
environment: stable
deploy2stable:
image: jackthestripper/drone_setimage
object: front
kind: deployment
namespace: default
img_names:
- storiqateam/stq-node
- storiqateam/stq-static
img_cnts:
- node
- static
img_tags:
- stable_${DRONE_BRANCH//\//_}${DRONE_BUILD_NUMBER}
- stable_${DRONE_BRANCH//\//_}${DRONE_BUILD_NUMBER}
secrets:
- source: k8s_stable_ca
target: k8s_ca
- source: k8s_stable_user
target: k8s_user
- source: k8s_stable_token
target: k8s_token
- source: k8s_stable_addr
target: k8s_addr
when:
branch: master
event: deployment
environment: stable
###
# Build and deploy to stage
###
build4stage:
image: node:9.9
commands:
- . ./.env.stage
- rm -f yarn.lock || true
- npm config delete _auth
- yarn -s --no-progress --non-interactive --production=false
- yarn updateSchema
- yarn relay
- yarn build
- yarn server:dist:build
when:
event: tag
node_package4stage:
image: plugins/docker
group: package
repo: storiqateam/stq-node
environment:
- TIER=stage
tags: 'stage_${DRONE_TAG}'
dockerfile: docker/Dockerfile.node
secrets:
- docker_username
- docker_password
when:
event: tag
static_package4stage:
image: plugins/docker
group: package
repo: storiqateam/stq-static
tags: 'stage_${DRONE_TAG}'
dockerfile: docker/Dockerfile.static
secrets:
- docker_username
- docker_password
when:
event: tag
deploy2stage:
image: jackthestripper/drone_setimage
object: front
kind: deployment
namespace: default
img_names:
- storiqateam/stq-node
- storiqateam/stq-static
img_cnts:
- node
- static
img_tags:
- 'stage_${DRONE_TAG}'
- 'stage_${DRONE_TAG}'
secrets:
- source: k8s_stage_ca
target: k8s_ca
- source: k8s_stage_user
target: k8s_user
- source: k8s_stage_token
target: k8s_token
- source: k8s_stage_addr
target: k8s_addr
when:
event: tag
###
# Build and deploy to production
###
build4production:
image: node:9.9
commands:
- . ./.env.production
- rm -f yarn.lock || true
- npm config delete _auth
- yarn -s --no-progress --non-interactive --production=false
- yarn updateSchema
- yarn relay
- yarn build
- yarn server:dist:build
when:
event: deployment
environment: production
node_package4production:
image: plugins/docker
group: package
repo: storiqateam/stq-node
environment:
- TIER=production
tags: 'prod_${DRONE_TAG}'
dockerfile: docker/Dockerfile.node
secrets:
- docker_username
- docker_password
when:
event: deployment
environment: production
static_package4production:
image: plugins/docker
group: package
repo: storiqateam/stq-static
tags: 'prod_${DRONE_TAG}'
dockerfile: docker/Dockerfile.static
secrets:
- docker_username
- docker_password
when:
event: deployment
environment: production
deploy2production:
image: jackthestripper/drone_setimage
object: front
kind: deployment
namespace: default
img_names:
- storiqateam/stq-node
- storiqateam/stq-static
img_cnts:
- node
- static
img_tags:
- prod_${DRONE_TAG}
- prod_${DRONE_TAG}
secrets:
- source: k8s_prod_ca
target: k8s_ca
- source: k8s_prod_user
target: k8s_user
- source: k8s_prod_token
target: k8s_token
- source: k8s_prod_addr
target: k8s_addr
when:
event: deployment
environment: production
###
# Notifications and post-deploy ops
###
rebuild-cache:
group: package
image: plugins/s3-cache:1
pull: true
secrets: [ aws_access_key_id, aws_secret_access_key ]
mount:
- node_modules
rebuild: true
when:
branch: master
event: push
slack:
image: plugins/slack
webhook: https://hooks.slack.com/services/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
channel: release
icon_url: https://drone.io/favicon.ico
username: cd.stq.cloud
template: >
{{#success build.status}}
{{repo.name}} has been released to stage.stq.cloud!
{{else}}
Failed to deploy {{repo.name}} to stage.stq.cloud! More details here {{build.link}}
{{/success}}
when:
event: tag
status:
- success
- failure
slack:
image: plugins/slack
webhook: https://hooks.slack.com/services/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
channel: release
icon_url: https://drone.io/favicon.ico
username: cd.stq.cloud
template: >
{{#success build.status}}
{{repo.name}} has been released to production.stq.cloud!
{{else}}
Failed to deploy {{repo.name}} to production.stq.cloud! More details here {{build.link}}
{{/success}}
when:
event: deployment
environment: production
status:
- success
- failure