-
Notifications
You must be signed in to change notification settings - Fork 0
411 lines (411 loc) · 20 KB
/
starter.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
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
name: workflows starter
# env: is empty, see setup-env and the outputs there
on:
push: {}
workflow_dispatch: {}
jobs:
setup_workflow_env:
runs-on: ubuntu-latest
# Optionally specify the environment that should be used on this branch
# environment: review/dev
outputs:
# It seems you have to specify the environment twice (passed to reusable workflow)
# as there is no way yet to get the active environment
# environment: review/dev
# or see the switch on ref_name script below
environment: ${{ steps.get_environment_from_git_ref.outputs.environment }}
environment_short: ${{ steps.get_environment_from_git_ref.outputs.environment_short }}
environment_uenc: ${{ steps.get_environment_from_git_ref.outputs.environment_uenc }}
image_name: nuxt-vicav
registry_root: ghcr.io/${{ github.repository }}/
default_port: "3000"
fetch-depth: 10
submodules: "false"
APP_NAME: nuxt-vicav
# This together with the branch name is also used as the namespace to deploy to
APP_ROOT: "/"
herokuish_base_image: ghcr.io/acdh-oeaw/herokuish-for-cypress/main:latest-22
# You should not need to have to change anything below this line
#-----------------------------------------------------------------------------------------------------
steps:
- name: Get environment from git ref
id: get_environment_from_git_ref
run: |
echo "Running on branch ${{ github.ref_name }}"
if [ "${{ github.ref }}" = "refs/heads/main" ]; then
echo "environment=production"
echo "environment=production" >> $GITHUB_OUTPUT
echo "environment_short=prod" >> $GITHUB_OUTPUT
echo "environment_uenc=prod" >> $GITHUB_OUTPUT
elif [ "${{ github.ref_name }}" = "tunocent" ]; then
echo "environment=tuncoent"
echo "environment=tunocent" >> $GITHUB_OUTPUT
echo "environment_short=tunocent" >> $GITHUB_OUTPUT
else
echo "environment=review/${{ github.ref_name }}"
echo "environment=review/${{ github.ref_name }}" >> $GITHUB_OUTPUT
echo "environment_short=$(echo -n ${{ github.ref_name }} | sed 's/\(feat\(ure\)\{0,1\}\|fix\|chore\|perf\|refactor\|style\|test\)[_/]//' | tr '_' '-' | tr '[:upper:]' '[:lower:]' | cut -c -48 )" >> $GITHUB_OUTPUT
echo "environment_uenc=$(echo -n ${{ github.ref_name }} | sed 's~/~%2F~g')" >> $GITHUB_OUTPUT
fi
generate_workflow_vars:
needs: [setup_workflow_env]
environment:
name: ${{ needs.setup_workflow_env.outputs.environment }}
runs-on: ubuntu-latest
steps:
- name: Generate PUBLIC_URL if not set
id: generate_public_url
run: |
kube_ingress_base_domain="${{ vars.KUBE_INGRESS_BASE_DOMAIN }}"
public_url="${{ needs.setup_workflow_env.outputs.PUBLIC_URL || vars.PUBLIC_URL }}"
if [ "${public_url}x" == 'x' ]
then public_url=https://${{ needs.setup_workflow_env.outputs.environment_short }}.${kube_ingress_base_domain}
fi
echo "public_url=$public_url" >> $GITHUB_OUTPUT
- name: Populate environment variables from template environment
id: populate_env_vars
if: ${{ github.ref_name != 'main' }}
# A fine grained personal access token needs to be set on repository level
# This token needs to have the following permissions:
# - "Variables" repository permissions (write)
# - "Environments" repository permissions (write)
env:
GH_PROMPT_DISABLED: "true"
GH_TOKEN: ${{ secrets.ENVIRONMENT_WRITE_TOKEN}}
ref_name: ${{ needs.setup_workflow_env.outputs.environment_uenc }}
template_ref_name: develop
run: |
# This was refactored using CoPilot
fetch_gh_env_vars() {
local environment=$1
gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/environments/${environment}/variables \
-q '.variables[]|select(.name|startswith("SERVICE_ID") or startswith("K8S_SECRET_"))|delpaths([["created_at"],["updated_at"]])'
}
post_var_as_json_to_env() {
local var=$1
local environment=$2
echo -n $var | gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/environments/${environment}/variables \
--input -
}
if [ "$GH_TOKEN"x != 'x' ]
then
VARS_TEMPLATE=$(fetch_gh_env_vars "review%2F${{ env.template_ref_name}}")
if [ "$(fetch_gh_env_vars "review%2F${{ env.ref_name }}")"x = "x" ]
then
for var in $VARS_TEMPLATE
do
post_var_as_json_to_env "$var" "review%2F${{ env.ref_name }}"
done
fi
fi
outputs:
environment: ${{ needs.setup_workflow_env.outputs.environment }}
environment_short: ${{ needs.setup_workflow_env.outputs.environment_short }}
PUBLIC_URL: ${{ steps.generate_public_url.outputs.public_url }}
APP_NAME: ${{ needs.setup_workflow_env.outputs.APP_NAME }}
generate_workflow_vars_shawi:
needs: [setup_workflow_env]
environment:
name: ${{ needs.setup_workflow_env.outputs.environment }}-shawi
runs-on: ubuntu-latest
steps:
- name: Generate PUBLIC_URL if not set
id: generate_public_url
run: |
kube_ingress_base_domain="${{ vars.KUBE_INGRESS_BASE_DOMAIN }}"
public_url="${{ needs.setup_workflow_env.outputs.PUBLIC_URL || vars.PUBLIC_URL }}"
if [ "${public_url}x" == 'x' ]
then public_url=https://shawi-${{ needs.setup_workflow_env.outputs.environment_short }}.${kube_ingress_base_domain}
fi
echo "public_url=$public_url" >> $GITHUB_OUTPUT
- name: Populate environment variables from template environment
id: populate_env_vars
if: ${{ github.ref_name != 'main' }}
# A fine grained personal access token needs to be set on repository level
# This token needs to have the following permissions:
# - "Variables" repository permissions (write)
# - "Environments" repository permissions (write)
env:
GH_PROMPT_DISABLED: "true"
GH_TOKEN: ${{ secrets.ENVIRONMENT_WRITE_TOKEN}}
ref_name: ${{ needs.setup_workflow_env.outputs.environment_uenc }}-shawi
template_ref_name: develop-shawi
run: |
# This was refactored using CoPilot
fetch_gh_env_vars() {
local environment=$1
gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/environments/${environment}/variables \
-q '.variables[]|select(.name|startswith("SERVICE_ID") or startswith("K8S_SECRET_"))|delpaths([["created_at"],["updated_at"]])'
}
post_var_as_json_to_env() {
local var=$1
local environment=$2
echo -n $var | gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/environments/${environment}/variables \
--input -
}
if [ "$GH_TOKEN"x != 'x' ]
then
VARS_TEMPLATE=$(fetch_gh_env_vars "review%2F${{ env.template_ref_name}}")
if [ "$(fetch_gh_env_vars "review%2F${{ env.ref_name }}")"x = "x" ]
then
for var in $VARS_TEMPLATE
do
post_var_as_json_to_env "$var" "review%2F${{ env.ref_name }}"
done
fi
fi
outputs:
environment: ${{ needs.setup_workflow_env.outputs.environment }}-shawi
environment_short: shawi-${{ needs.setup_workflow_env.outputs.environment_short }}
PUBLIC_URL: ${{ steps.generate_public_url.outputs.public_url }}
APP_NAME: ${{ needs.setup_workflow_env.outputs.APP_NAME }}
generate_workflow_vars_tunocent:
needs: [setup_workflow_env]
environment:
name: ${{ needs.setup_workflow_env.outputs.environment }}-tunocent
runs-on: ubuntu-latest
steps:
- name: Generate PUBLIC_URL if not set
id: generate_public_url
run: |
kube_ingress_base_domain="${{ vars.KUBE_INGRESS_BASE_DOMAIN }}"
public_url="${{ needs.setup_workflow_env.outputs.PUBLIC_URL || vars.PUBLIC_URL }}"
if [ "${public_url}x" == 'x' ]
then public_url=https://tunocent-${{ needs.setup_workflow_env.outputs.environment_short }}.${kube_ingress_base_domain}
fi
echo "public_url=$public_url" >> $GITHUB_OUTPUT
- name: Populate environment variables from template environment
id: populate_env_vars
if: ${{ github.ref_name != 'main' }}
# A fine grained personal access token needs to be set on repository level
# This token needs to have the following permissions:
# - "Variables" repository permissions (write)
# - "Environments" repository permissions (write)
env:
GH_PROMPT_DISABLED: "true"
GH_TOKEN: ${{ secrets.ENVIRONMENT_WRITE_TOKEN}}
ref_name: ${{ needs.setup_workflow_env.outputs.environment_uenc }}-tunocent
template_ref_name: develop-tunocent
run: |
# This was refactored using CoPilot
fetch_gh_env_vars() {
local environment=$1
gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/environments/${environment}/variables \
-q '.variables[]|select(.name|startswith("SERVICE_ID") or startswith("K8S_SECRET_"))|delpaths([["created_at"],["updated_at"]])'
}
post_var_as_json_to_env() {
local var=$1
local environment=$2
echo -n $var | gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/environments/${environment}/variables \
--input -
}
if [ "$GH_TOKEN"x != 'x' ]
then
VARS_TEMPLATE=$(fetch_gh_env_vars "review%2F${{ env.template_ref_name}}")
if [ "$(fetch_gh_env_vars "review%2F${{ env.ref_name }}")"x = "x" ]
then
for var in $VARS_TEMPLATE
do
post_var_as_json_to_env "$var" "review%2F${{ env.ref_name }}"
done
fi
fi
outputs:
environment: ${{ needs.setup_workflow_env.outputs.environment }}-tunocent
environment_short: tunocent-${{ needs.setup_workflow_env.outputs.environment_short }}
PUBLIC_URL: ${{ steps.generate_public_url.outputs.public_url }}
APP_NAME: ${{ needs.setup_workflow_env.outputs.APP_NAME }}
generate_workflow_vars_wibarab:
needs: [setup_workflow_env]
environment:
name: ${{ needs.setup_workflow_env.outputs.environment }}-wibarab
runs-on: ubuntu-latest
steps:
- name: Generate PUBLIC_URL if not set
id: generate_public_url
run: |
kube_ingress_base_domain="${{ vars.KUBE_INGRESS_BASE_DOMAIN }}"
public_url="${{ needs.setup_workflow_env.outputs.PUBLIC_URL || vars.PUBLIC_URL }}"
if [ "${public_url}x" == 'x' ]
then public_url=https://wibarab-${{ needs.setup_workflow_env.outputs.environment_short }}.${kube_ingress_base_domain}
fi
echo "public_url=$public_url" >> $GITHUB_OUTPUT
- name: Populate environment variables from template environment
id: populate_env_vars
if: ${{ github.ref_name != 'main' }}
# A fine grained personal access token needs to be set on repository level
# This token needs to have the following permissions:
# - "Variables" repository permissions (write)
# - "Environments" repository permissions (write)
env:
GH_PROMPT_DISABLED: "true"
GH_TOKEN: ${{ secrets.ENVIRONMENT_WRITE_TOKEN}}
ref_name: ${{ needs.setup_workflow_env.outputs.environment_uenc }}-wibarab
template_ref_name: develop-wibarab
run: |
# This was refactored using CoPilot
fetch_gh_env_vars() {
local environment=$1
gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/environments/${environment}/variables \
-q '.variables[]|select(.name|startswith("SERVICE_ID") or startswith("K8S_SECRET_"))|delpaths([["created_at"],["updated_at"]])'
}
post_var_as_json_to_env() {
local var=$1
local environment=$2
echo -n $var | gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/environments/${environment}/variables \
--input -
}
if [ "$GH_TOKEN"x != 'x' ]
then
VARS_TEMPLATE=$(fetch_gh_env_vars "review%2F${{ env.template_ref_name}}")
if [ "$(fetch_gh_env_vars "review%2F${{ env.ref_name }}")"x = "x" ]
then
for var in $VARS_TEMPLATE
do
post_var_as_json_to_env "$var" "review%2F${{ env.ref_name }}"
done
fi
fi
outputs:
environment: ${{ needs.setup_workflow_env.outputs.environment }}-wibarab
environment_short: wibarab-${{ needs.setup_workflow_env.outputs.environment_short }}
PUBLIC_URL: ${{ steps.generate_public_url.outputs.public_url }}
APP_NAME: ${{ needs.setup_workflow_env.outputs.APP_NAME }}
_1:
needs:
[
setup_workflow_env,
generate_workflow_vars,
generate_workflow_vars_wibarab,
generate_workflow_vars_tunocent,
generate_workflow_vars_shawi,
]
uses: acdh-oeaw/gl-autodevops-minimal-port/.github/workflows/build-herokuish-and-push-to-registry.yaml@main
secrets: inherit
# if you run this outside of of an org that provides KUBE_CONFIG etc as a secret, you need to specify every secret you want to pass by name
with:
environment: ${{ needs.generate_workflow_vars.outputs.environment }}
registry_root: ${{ needs.setup_workflow_env.outputs.registry_root }}
image_name: ${{ needs.setup_workflow_env.outputs.image_name }}
default_port: ${{ needs.setup_workflow_env.outputs.default_port }}
PUBLIC_URL: ${{ needs.generate_workflow_vars.outputs.PUBLIC_URL }}
fetch-depth: ${{ fromJson(needs.setup_workflow_env.outputs.fetch-depth) }}
submodules: ${{ needs.setup_workflow_env.outputs.submodules }}
_2:
needs: [setup_workflow_env, generate_workflow_vars]
uses: acdh-oeaw/gl-autodevops-minimal-port/.github/workflows/herokuish-tests-db-url.yaml@main
secrets: inherit
# if you run this outside of acdh-oeaw yo uneed to specify every secret you want to pass by name
with:
environment: ${{ needs.setup_workflow_env.outputs.environment}}
registry_root: ${{ needs.setup_workflow_env.outputs.registry_root }}
image_name: ${{ needs.setup_workflow_env.outputs.image_name }}
default_port: ${{ needs.setup_workflow_env.outputs.default_port }}
fetch-depth: ${{ fromJson(needs.setup_workflow_env.outputs.fetch-depth) }}
herokuish_base_image: ${{ needs.setup_workflow_env.outputs.herokuish_base_image }}
PUBLIC_URL: ${{ needs.generate_workflow_vars.outputs.PUBLIC_URL }}
submodules: ${{ needs.setup_workflow_env.outputs.submodules }}
_3:
needs: [setup_workflow_env, generate_workflow_vars, _1, _2]
uses: acdh-oeaw/gl-autodevops-minimal-port/.github/workflows/deploy.yml@main
secrets: inherit
with:
environment: ${{ needs.generate_workflow_vars.outputs.environment}}
fetch-depth: ${{ fromJson(needs.setup_workflow_env.outputs.fetch-depth) }}
DOCKER_TAG:
${{ needs.setup_workflow_env.outputs.registry_root }}${{
needs.setup_workflow_env.outputs.image_name }}
APP_NAME:
${{ needs.generate_workflow_vars.outputs.APP_NAME }}-${{
needs.generate_workflow_vars.outputs.environment_short }}
APP_ROOT: ${{ needs.setup_workflow_env.outputs.APP_ROOT }}
PUBLIC_URL: ${{ needs.generate_workflow_vars.outputs.PUBLIC_URL }}
do_not_generate_additional_host_names: "true"
POSTGRES_ENABLED: ${{ needs.setup_workflow_env.outputs.POSTGRES_ENABLED == 'true'}}
default_port: "${{ needs.setup_workflow_env.outputs.default_port}}"
submodules: ${{ needs.setup_workflow_env.outputs.submodules }}
_3-shawi:
needs: [setup_workflow_env, generate_workflow_vars_shawi, _1, _2]
uses: acdh-oeaw/gl-autodevops-minimal-port/.github/workflows/deploy.yml@main
secrets: inherit
with:
environment: ${{ needs.generate_workflow_vars_shawi.outputs.environment}}
fetch-depth: ${{ fromJson(needs.setup_workflow_env.outputs.fetch-depth) }}
DOCKER_TAG:
${{ needs.setup_workflow_env.outputs.registry_root }}${{
needs.setup_workflow_env.outputs.image_name }}
APP_NAME:
${{ needs.generate_workflow_vars_shawi.outputs.APP_NAME }}-${{
needs.generate_workflow_vars_shawi.outputs.environment_short }}
APP_ROOT: ${{ needs.setup_workflow_env.outputs.APP_ROOT }}
PUBLIC_URL: ${{ needs.generate_workflow_vars_shawi.outputs.PUBLIC_URL }}
do_not_generate_additional_host_names: "true"
POSTGRES_ENABLED: ${{ needs.setup_workflow_env.outputs.POSTGRES_ENABLED == 'true'}}
default_port: "${{ needs.setup_workflow_env.outputs.default_port}}"
submodules: ${{ needs.setup_workflow_env.outputs.submodules }}
_3-tunocent:
needs: [setup_workflow_env, generate_workflow_vars_tunocent, _1, _2]
uses: acdh-oeaw/gl-autodevops-minimal-port/.github/workflows/deploy.yml@main
secrets: inherit
with:
environment: ${{ needs.generate_workflow_vars_tunocent.outputs.environment}}
fetch-depth: ${{ fromJson(needs.setup_workflow_env.outputs.fetch-depth) }}
DOCKER_TAG:
${{ needs.setup_workflow_env.outputs.registry_root }}${{
needs.setup_workflow_env.outputs.image_name }}
APP_NAME:
${{ needs.generate_workflow_vars_tunocent.outputs.APP_NAME }}-${{
needs.generate_workflow_vars_tunocent.outputs.environment_short }}
APP_ROOT: ${{ needs.setup_workflow_env.outputs.APP_ROOT }}
PUBLIC_URL: ${{ needs.generate_workflow_vars_tunocent.outputs.PUBLIC_URL }}
do_not_generate_additional_host_names: "true"
POSTGRES_ENABLED: ${{ needs.setup_workflow_env.outputs.POSTGRES_ENABLED == 'true'}}
default_port: "${{ needs.setup_workflow_env.outputs.default_port}}"
submodules: ${{ needs.setup_workflow_env.outputs.submodules }}
_3-wibarab:
needs: [setup_workflow_env, generate_workflow_vars_wibarab, _1, _2]
uses: acdh-oeaw/gl-autodevops-minimal-port/.github/workflows/deploy.yml@main
secrets: inherit
with:
environment: ${{ needs.generate_workflow_vars_wibarab.outputs.environment}}
fetch-depth: ${{ fromJson(needs.setup_workflow_env.outputs.fetch-depth) }}
DOCKER_TAG:
${{ needs.setup_workflow_env.outputs.registry_root }}${{
needs.setup_workflow_env.outputs.image_name }}
APP_NAME:
${{ needs.generate_workflow_vars_wibarab.outputs.APP_NAME }}-${{
needs.generate_workflow_vars_wibarab.outputs.environment_short }}
APP_ROOT: ${{ needs.setup_workflow_env.outputs.APP_ROOT }}
PUBLIC_URL: ${{ needs.generate_workflow_vars_wibarab.outputs.PUBLIC_URL }}
do_not_generate_additional_host_names: "true"
POSTGRES_ENABLED: ${{ needs.setup_workflow_env.outputs.POSTGRES_ENABLED == 'true'}}
default_port: "${{ needs.setup_workflow_env.outputs.default_port}}"
submodules: ${{ needs.setup_workflow_env.outputs.submodules }}