-
Notifications
You must be signed in to change notification settings - Fork 1
308 lines (261 loc) · 8.87 KB
/
deploy-personal-dev-environment.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
name: Deploy Personal Development Environment
run-name: Deployment to `${{ inputs.name }}` development environment
on:
workflow_dispatch:
inputs:
name:
description: "The name of the dev environment you wish to deploy to e.g. abcd1234"
required: true
type: string
frontend_branch:
description: "The name of the git branch from the frontend which should be deployed"
default: "main"
type: string
backend_branch:
description: "The name of the git branch from the backend which should be deployed"
default: "main"
type: string
ingestion_branch:
description: "The name of the git branch from the backend which should be deployed to the ingestion service"
default: "main"
type: string
infra_branch:
description: "The name of the git branch from the infra-as-code repo which should be deployed"
default: "main"
type: string
env:
AWS_REGION: "eu-west-2"
permissions:
id-token: write
contents: read
jobs:
terraform_apply:
name: Terraform apply
runs-on: ubuntu-latest
steps:
- name: Checkout infra repo
uses: actions/checkout@v4
with:
ref: ${{ inputs.infra_branch }}
- uses: actions/setup-python@v5
- name: Configure AWS credentials for tools account
uses: ./.github/actions/configure-aws-credentials
with:
aws-region: ${{ env.AWS_REGION }}
tools-account-role: ${{ secrets.UHD_TERRAFORM_IAM_ROLE }}
role-duration-seconds: "7200"
- uses: ./.github/actions/setup-terraform
- uses: ./.github/actions/setup-zsh
- name: Terraform apply
run: |
source uhd.sh
uhd terraform init:layer 20-app
uhd terraform apply:layer 20-app ${{ inputs.name }}
shell: zsh {0}
push_frontend_docker_image:
name: Push frontend docker image
runs-on: ubuntu-22.04-arm
needs: ["terraform_apply"]
steps:
- name: Checkout .github/ directory
uses: actions/checkout@v4
with:
ref: ${{ inputs.infra_branch }}
sparse-checkout: |
.github
- name: Configure AWS credentials for tools account
uses: ./.github/actions/configure-aws-credentials
with:
aws-region: ${{ env.AWS_REGION }}
tools-account-role: ${{ secrets.UHD_TERRAFORM_IAM_ROLE }}
- uses: ./.github/actions/setup-zsh
- name: Checkout frontend repo
uses: actions/checkout@v4
with:
repository: UKHSA-Internal/data-dashboard-frontend
path: data-dashboard-frontend
ref: ${{ inputs.frontend_branch }}
- name: Checkout infra repo
uses: actions/checkout@v4
with:
path: data-dashboard-infra
ref: ${{ inputs.infra_branch }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build frontend image
run: |
cd data-dashboard-infra
source uhd.sh
if [[ "${{ inputs.frontend_branch }}" == "main" ]]; then
uhd docker update-service dev ${{ inputs.name }} front-end
else
uhd docker build frontend ${{ inputs.name }}
fi
shell: zsh {0}
push_backend_docker_image:
name: Push backend docker image
runs-on: ubuntu-22.04-arm
needs: [ "terraform_apply" ]
steps:
- name: Checkout .github/ directory
uses: actions/checkout@v4
with:
ref: ${{ inputs.infra_branch }}
sparse-checkout: |
.github
- name: Configure AWS credentials for tools account
uses: ./.github/actions/configure-aws-credentials
with:
aws-region: ${{ env.AWS_REGION }}
tools-account-role: ${{ secrets.UHD_TERRAFORM_IAM_ROLE }}
- uses: ./.github/actions/setup-zsh
- name: Checkout backend repo
uses: actions/checkout@v4
with:
repository: UKHSA-Internal/data-dashboard-api
path: data-dashboard-api
ref: ${{ inputs.backend_branch }}
- name: Checkout infra repo
uses: actions/checkout@v4
with:
path: data-dashboard-infra
ref: ${{ inputs.infra_branch }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build backend image
run: |
cd data-dashboard-infra
source uhd.sh
if [[ "${{ inputs.backend_branch }}" == "main" ]]; then
uhd docker update-service dev ${{ inputs.name }} back-end
else
uhd docker build backend ${{ inputs.name }}
fi
shell: zsh {0}
push_ingestion_docker_image:
name: Push ingestion docker image
runs-on: ubuntu-22.04-arm
needs: [ "terraform_apply" ]
steps:
- name: Checkout .github/ directory
uses: actions/checkout@v4
with:
ref: ${{ inputs.infra_branch }}
sparse-checkout: |
.github
- name: Configure AWS credentials for tools account
uses: ./.github/actions/configure-aws-credentials
with:
aws-region: ${{ env.AWS_REGION }}
tools-account-role: ${{ secrets.UHD_TERRAFORM_IAM_ROLE }}
- uses: ./.github/actions/setup-zsh
- name: Checkout backend repo
uses: actions/checkout@v4
with:
repository: UKHSA-Internal/data-dashboard-api
path: data-dashboard-api
ref: ${{ inputs.ingestion_branch }}
- name: Checkout infra repo
uses: actions/checkout@v4
with:
path: data-dashboard-infra
ref: ${{ inputs.infra_branch }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build ingestion image
run: |
cd data-dashboard-infra
source uhd.sh
if [[ "${{ inputs.ingestion_branch }}" == "main" ]]; then
uhd docker update-service dev ${{ inputs.name }} ingestion
else
uhd docker build ingestion ${{ inputs.name }}
fi
shell: zsh {0}
restart_services:
name: Restart services
runs-on: ubuntu-latest
needs:
[
"push_frontend_docker_image",
"push_backend_docker_image",
"push_ingestion_docker_image",
]
steps:
- name: Checkout infra repo
uses: actions/checkout@v4
with:
ref: ${{ inputs.infra_branch }}
- name: Configure AWS credentials for tools account
uses: ./.github/actions/configure-aws-credentials
with:
aws-region: ${{ env.AWS_REGION }}
tools-account-role: ${{ secrets.UHD_TERRAFORM_IAM_ROLE }}
- uses: ./.github/actions/setup-terraform
- uses: ./.github/actions/setup-zsh
- name: Terraform output
run: |
source uhd.sh
uhd terraform init:layer 20-app
uhd terraform output:layer 20-app ${{ inputs.name }}
shell: zsh {0}
- name: Configure AWS credentials for dev account
uses: ./.github/actions/configure-aws-credentials
with:
account-name: "dev"
aws-region: ${{ env.AWS_REGION }}
dev-account-role: ${{ secrets.UHD_TERRAFORM_ROLE_DEV }}
- name: Restart ECS services
run: |
source uhd.sh
uhd ecs restart-services
shell: zsh {0}
- name: Redeploy lambda functions
run: |
source uhd.sh
uhd lambda restart-functions
shell: zsh {0}
flush_caches:
name: Flush caches
runs-on: ubuntu-latest
needs: ["restart_services"]
steps:
- name: Checkout infra repo
uses: actions/checkout@v4
with:
ref: ${{ inputs.infra_branch }}
- uses: ./.github/actions/setup-terraform
- uses: ./.github/actions/setup-zsh
- name: Configure AWS credentials for tools account
uses: ./.github/actions/configure-aws-credentials
with:
aws-region: ${{ env.AWS_REGION }}
tools-account-role: ${{ secrets.UHD_TERRAFORM_IAM_ROLE }}
- name: Terraform output
run: |
source uhd.sh
uhd terraform init:layer 20-app
uhd terraform output ${{ inputs.name }}
shell: zsh {0}
- name: Configure AWS credentials for account
uses: ./.github/actions/configure-aws-credentials
with:
account-name: "dev"
aws-region: ${{ env.AWS_REGION }}
dev-account-role: ${{ secrets.UHD_TERRAFORM_ROLE_DEV }}
- name: Flush caches
run: |
source uhd.sh
uhd cache flush
shell: zsh {0}
- name: Restart front end
run: |
source uhd.sh
uhd ecs restart-containers front_end
shell: zsh {0}