-
Notifications
You must be signed in to change notification settings - Fork 7
551 lines (517 loc) · 19.5 KB
/
workflow_path_to_live.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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
name: "[Workflow] Path to Live"
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
defaults:
run:
shell: bash
on:
push:
branches:
- main
paths:
- "service-*/**"
- "cypress/**"
- "terraform/**"
- "scripts/**"
- "shared/**"
- ".github/workflows/**"
permissions:
contents: write
security-events: write
pull-requests: read
actions: none
checks: none
deployments: none
issues: none
packages: none
repository-projects: none
statuses: none
jobs:
set_variables:
name: Set variables
runs-on: ubuntu-latest
outputs:
short_sha: ${{ steps.short_sha.outputs.short_sha }}
semver_tag: ${{ steps.semver_tag.outputs.created_tag }}
environment_terraform_version: ${{ steps.terraform_version_environment.outputs.version }}
account_terraform_version: ${{ steps.terraform_version_account.outputs.version }}
region_terraform_version: ${{ steps.terraform_version_region.outputs.version }}
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
with:
fetch-depth: 2
- name: Set output to penultimate short SHA
id: short_sha
run: |
echo "short_sha=$(git rev-list --no-merges -n 1 HEAD | cut -c1-7)" >> $GITHUB_OUTPUT
- name: Set terraform version - environment
id: terraform_version_environment
uses: ministryofjustice/opg-github-actions/.github/actions/[email protected]
with:
terraform_directory: "./terraform/environment"
- name : Set terraform version - account
id: terraform_version_account
uses: ministryofjustice/opg-github-actions/.github/actions/[email protected]
with:
terraform_directory: "./terraform/account"
- name: Set terraform version - region
id: terraform_version_region
uses: ministryofjustice/opg-github-actions/.github/actions/[email protected]
with:
terraform_directory: "./terraform/region"
- name: Bump version and push tag
uses: ministryofjustice/opg-github-actions/.github/actions/[email protected]
id: semver_tag
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
with_v: true
default_bump: minor
docker_build_scan_push:
name: Docker Build, Scan and Push
uses: ./.github/workflows/docker_job.yml
needs:
- set_variables
with:
tag: main-${{ needs.set_variables.outputs.semver_tag }}
secrets: inherit
terraform_account_preproduction:
name: TF Preproduction - Account
needs:
- set_variables
uses: ministryofjustice/opg-github-workflows/.github/workflows/[email protected]
with:
terraform_version: ${{ needs.set_variables.outputs.account_terraform_version }}
terraform_workspace: preproduction
is_ephemeral: false
terraform_apply: true
terraform_directory: ./terraform/account
secrets:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PAGERDUTY_TOKEN: ${{ secrets.PAGERDUTY_TOKEN }}
AWS_ACCESS_KEY_ID_ACTIONS: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }}
AWS_SECRET_ACCESS_KEY_ACTIONS: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
terraform_region_preproduction:
name: TF Preproduction - Region
uses: ministryofjustice/opg-github-workflows/.github/workflows/[email protected]
needs:
- set_variables
with:
terraform_version: ${{ needs.set_variables.outputs.environment_terraform_version }}
terraform_workspace: preproduction
is_ephemeral: false
terraform_apply: true
terraform_directory: ./terraform/region
secrets:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PAGERDUTY_TOKEN: ${{ secrets.PAGERDUTY_TOKEN }}
AWS_ACCESS_KEY_ID_ACTIONS: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }}
AWS_SECRET_ACCESS_KEY_ACTIONS: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
terraform_environment_preproduction:
name: TF Preproduction - Environment
uses: ministryofjustice/opg-github-workflows/.github/workflows/[email protected]
with:
terraform_version: ${{ needs.set_variables.outputs.environment_terraform_version }}
terraform_workspace: preproduction
is_ephemeral: false
terraform_apply: true
use_ssh_private_key: true
terraform_directory: ./terraform/environment
terraform_variables: "-var container_version=main-${{ needs.set_variables.outputs.semver_tag }}"
persist_artifacts: true
needs:
- docker_build_scan_push
- set_variables
secrets:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PAGERDUTY_TOKEN: ${{ secrets.PAGERDUTY_TOKEN }}
AWS_ACCESS_KEY_ID_ACTIONS: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }}
AWS_SECRET_ACCESS_KEY_ACTIONS: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run_preproduction_seed_db_task:
name: Run preproduction DB seeding
uses: ./.github/workflows/workflow_start_task.yml
with:
account_id: "987830934591"
task_name: "seeding"
needs:
- terraform_environment_preproduction
secrets: inherit
preprod_terraform_outputs:
name: Render terraform outputs
runs-on: ubuntu-latest
outputs:
admin_fqdn: ${{ steps.admin_fqdn.outputs.value }}
front_fqdn: ${{ steps.front_fqdn.outputs.value }}
needs:
- terraform_environment_preproduction
steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Download Terraform Task definition
uses: actions/[email protected]
with:
name: terraform-artifact
path: /tmp/
- name: Terraform Outputs from JSON
id: set_var
run: |
content=$(cat /tmp/environment_pipeline_tasks_config.json)
content="${content//'%'/'%25'}"
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
echo "configJson=${content}" >> $GITHUB_OUTPUT
- name: Extract Admin FQDN from JSON
id: admin_fqdn
env:
configJson: ${{steps.set_var.outputs.configJson}}
run: |
echo "value=${{ fromJson(env.configJson).admin_fqdn }}" >> $GITHUB_OUTPUT
- name: Extract Front FQDN from JSON
id: front_fqdn
run: |
echo "value=${{ fromJson(steps.set_var.outputs.configJson).front_fqdn }}" >> $GITHUB_OUTPUT
cypress_tests_Signup_StichedPF:
name: Run Cypress tests - @Signup,@StitchedPF
uses: ./.github/workflows/cypress_tests.yml
needs:
- preprod_terraform_outputs
- run_preproduction_seed_db_task
with:
admin_url: https://${{ needs.preprod_terraform_outputs.outputs.admin_fqdn }}
front_url: https://${{ needs.preprod_terraform_outputs.outputs.front_fqdn }}
account_id: "987830934591"
cypress_tags: "@Signup,@StitchedPF"
secrets: inherit
cypress_tests_Signup_StichedHW:
name: Run Cypress tests - @Signup,@StitchedHW
uses: ./.github/workflows/cypress_tests.yml
needs:
- preprod_terraform_outputs
- run_preproduction_seed_db_task
with:
admin_url: https://${{ needs.preprod_terraform_outputs.outputs.admin_fqdn }}
front_url: https://${{ needs.preprod_terraform_outputs.outputs.front_fqdn }}
account_id: "987830934591"
cypress_tags: "@Signup,@StitchedHW"
secrets: inherit
cypress_tests_SignupIncluded:
name: Run Cypress tests - @SignupIncluded
uses: ./.github/workflows/cypress_tests.yml
needs:
- preprod_terraform_outputs
- run_preproduction_seed_db_task
with:
admin_url: https://${{ needs.preprod_terraform_outputs.outputs.admin_fqdn }}
front_url: https://${{ needs.preprod_terraform_outputs.outputs.front_fqdn }}
account_id: "987830934591"
cypress_tags: "@SignupIncluded"
secrets: inherit
# Remaining tests should ultimately just exclude SignUp and anything already done as part of stitched run.
# TODO CorrespondentReuse needs refactoring so that it can be included as part of the stitchedClone run.
cypress_tests_Remaining:
name: Run Cypress tests - Remaining
uses: ./.github/workflows/cypress_tests.yml
needs:
- preprod_terraform_outputs
- run_preproduction_seed_db_task
with:
admin_url: https://${{ needs.preprod_terraform_outputs.outputs.admin_fqdn }}
front_url: https://${{ needs.preprod_terraform_outputs.outputs.front_fqdn }}
account_id: "987830934591"
cypress_tags: "@Signup,not @Signup and not @PartOfStitchedRun and not @StitchedHW and not @StitchedPF and not @StitchedClone and not @CorrespondentReuse and not @SignupIncluded and not @AdminSystemMessage and not @CheckoutPaymentGateway"
secrets: inherit
locust_tests:
name: Run locust tests
uses: ./.github/workflows/locust_tests.yml
needs:
- preprod_terraform_outputs
- run_preproduction_seed_db_task
with:
front_url: https://${{ needs.preprod_terraform_outputs.outputs.front_fqdn }}
account_id: "987830934591"
secrets: inherit
slack_msg_production_deploy_begin:
name: Annouce Production Deployment
runs-on: ubuntu-latest
outputs:
ts: ${{ steps.slack.outputs.ts }}
thread_ts: ${{ steps.slack.outputs.thread_ts }}
needs:
- cypress_tests_Signup_StichedPF
- cypress_tests_Signup_StichedHW
- cypress_tests_SignupIncluded
- cypress_tests_Remaining
- set_variables
steps:
- id: slack
uses: slackapi/slack-github-action@fcfb566f8b0aab22203f066d80ca1d7e4b5d05b3 # v1.27.1
with:
channel-id: "C9PNCT2KS"
payload: |
{
"icon_emoji": ":robot_face:",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Production Deployment",
"emoji": true
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Status:*\nStarted :hourglass_flowing_sand:"
},
{
"type": "mrkdwn",
"text": "*Started by:*\n ${{ github.triggering_actor }}"
}
]
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Commit:*\n <https://github.com/ministryofjustice/opg-lpa/commit/${{ github.sha }}|${{ needs.set_variables.outputs.short_sha }}>"
}
]
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<https://github.com/ministryofjustice/opg-lpa/actions/runs/${{github.run_id}}|View workflow>"
}
}
]
}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN}}
terraform_account_production:
name: TF Production - Account
uses: ministryofjustice/opg-github-workflows/.github/workflows/[email protected]
needs:
- slack_msg_production_deploy_begin
- set_variables
with:
terraform_version: ${{ needs.set_variables.outputs.account_terraform_version }}
terraform_workspace: production
is_ephemeral: false
terraform_apply: true
terraform_directory: ./terraform/account
secrets:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PAGERDUTY_TOKEN: ${{ secrets.PAGERDUTY_TOKEN }}
AWS_ACCESS_KEY_ID_ACTIONS: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }}
AWS_SECRET_ACCESS_KEY_ACTIONS: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
terraform_region_production:
name: TF Production - Region
uses: ministryofjustice/opg-github-workflows/.github/workflows/[email protected]
needs:
- slack_msg_production_deploy_begin
- set_variables
with:
terraform_version: ${{ needs.set_variables.outputs.region_terraform_version }}
terraform_workspace: production
is_ephemeral: false
terraform_apply: true
terraform_directory: ./terraform/region
secrets:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PAGERDUTY_TOKEN: ${{ secrets.PAGERDUTY_TOKEN }}
AWS_ACCESS_KEY_ID_ACTIONS: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }}
AWS_SECRET_ACCESS_KEY_ACTIONS: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
terraform_environment_production:
name: TF Production - Environment
uses: ministryofjustice/opg-github-workflows/.github/workflows/[email protected]
with:
terraform_version: ${{ needs.set_variables.outputs.environment_terraform_version }}
terraform_workspace: production
is_ephemeral: false
terraform_apply: true
terraform_directory: ./terraform/environment
use_ssh_private_key: true
persist_artifacts: true
terraform_variables: "-var container_version=main-${{ needs.set_variables.outputs.semver_tag }}"
needs:
- docker_build_scan_push
- slack_msg_production_deploy_begin
- set_variables
secrets:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PAGERDUTY_TOKEN: ${{ secrets.PAGERDUTY_TOKEN }}
AWS_ACCESS_KEY_ID_ACTIONS: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }}
AWS_SECRET_ACCESS_KEY_ACTIONS: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }}
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run_smoke_tests:
runs-on: ubuntu-latest
outputs:
smoke_test_status: ${{ steps.smoke_tests.outputs.smoke_test_status }}
needs:
- terraform_environment_production
- terraform_region_production
- terraform_account_production
steps:
- name: Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Download Terraform Task definition
uses: actions/[email protected]
with:
name: terraform-artifact
path: /tmp/
- name: Setup Python
uses: actions/setup-python@b64ffcaf5b410884ad320a9cfac8866006a109aa # v4.8.0
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r scripts/pipeline/requirements.txt
- name: Run smoke tests
id: smoke_tests
run: |
if python scripts/pipeline/healthcheck_test/healthcheck_test.py; then
echo "smoke_test_status=passed" >> $GITHUB_OUTPUT
else
echo "smoke_test_status=failed" >> $GITHUB_OUTPUT
fi
slack_msg_production_deployed:
name: Post-Deployment Slack message
runs-on: ubuntu-latest
if: always()
needs:
- slack_msg_production_deploy_begin
- run_smoke_tests
- set_variables
steps:
- uses: slackapi/slack-github-action@fcfb566f8b0aab22203f066d80ca1d7e4b5d05b3 # v1.27.1
if: needs.run_smoke_tests.outputs.smoke_test_status == 'passed'
with:
channel-id: "C9PNCT2KS"
update-ts: ${{ needs.slack_msg_production_deploy_begin.outputs.ts }}
payload: |
{
"icon_emoji": ":robot_face:",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Production Deployment",
"emoji": true
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Status:*\nComplete :white_check_mark:"
},
{
"type": "mrkdwn",
"text": "*Started by:*\n ${{ github.triggering_actor }}"
}
]
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Commit:*\n <https://github.com/ministryofjustice/opg-lpa/commit/${{ github.sha }}|${{ needs.set_variables.outputs.short_sha }}>"
}
]
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<https://github.com/ministryofjustice/opg-lpa/actions/runs/${{github.run_id}}|View workflow>"
}
}
]
}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
- uses: slackapi/slack-github-action@fcfb566f8b0aab22203f066d80ca1d7e4b5d05b3 # v1.27.1
if: needs.run_smoke_tests.outputs.smoke_test_status != 'passed'
with:
channel-id: "C9PNCT2KS"
update-ts: ${{ needs.slack_msg_production_deploy_begin.outputs.ts }}
payload: |
{
"icon_emoji": ":robot_face:",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Production Deployment",
"emoji": true
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Status:*\nFailed! :x:"
},
{
"type": "mrkdwn",
"text": "*Started by:*\n ${{ github.triggering_actor }}"
}
]
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Commit:*\n <https://github.com/ministryofjustice/opg-lpa/commit/${{ github.sha }}|${{ needs.set_variables.outputs.short_sha }}>"
}
]
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<https://github.com/ministryofjustice/opg-lpa/actions/runs/${{github.run_id}}|View workflow>"
}
}
]
}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
- uses: slackapi/slack-github-action@fcfb566f8b0aab22203f066d80ca1d7e4b5d05b3 # v1.27.1
if: needs.run_smoke_tests.outputs.smoke_test_status != 'passed'
with:
channel-id: "C9PNCT2KS"
payload: |
{
"icon_emoji": ":warning:",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Production Make deployment failed. Please check the <https://github.com/ministryofjustice/opg-lpa/actions/runs/${{github.run_id}}|workflow> for more details. <!here>"
}
}
]
}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}