-
Notifications
You must be signed in to change notification settings - Fork 9
600 lines (530 loc) · 18.1 KB
/
continuous-deploy.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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
name: CICD
on:
workflow_dispatch:
inputs:
run-reset-deployments:
description: Reset deployment - Clean start
required: false
default: false
type: boolean
run-tests:
description: Run tests step
required: false
default: true
type: boolean
run-regression-tests:
description: Run regression tests step
required: false
default: true
type: boolean
push:
branches:
- master
tags:
- "v*"
paths:
- "**"
- "!docs/**" # Ignore changes in the docs folder
- "!**.md" # Ignore changes to any markdown file
pull_request:
branches:
- master
types:
- opened
- reopened
- synchronize
- ready_for_review
paths:
- "**"
- "!docs/**" # Ignore changes in the docs folder
- "!**.md" # Ignore changes to any markdown file
permissions: {}
env:
TAILSCALE_VERSION: 1.80.0
HELMFILE_VERSION: v0.170.1
HELM_VERSION: v3.17.0
MISE_VERSION: 2025.2.1
jobs:
format:
name: Format
runs-on: ubuntu-latest
concurrency:
group: format-check-${{ github.ref_name }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Overwrite .mise.toml # It's not needed in this workflow
run: |
cat <<EOF > .mise.toml
[tools]
"pipx:black" = "25.1"
"pipx:isort" = "6.0"
python = "3.12"
uv = "0.5"
[settings]
pipx_uvx = true
EOF
- name: Set up Mise
uses: jdx/mise-action@v2
with:
version: ${{ env.MISE_VERSION }}
cache: true
experimental: true
install: true
- name: Check import style with isort
run: isort . --check --profile black --diff
- name: Check code style with Black
run: black . --check --diff
- name: Check Tiltfiles with Black
run: |
find . -type f -name "Tiltfile" | while read -r file; do
black --check --diff "$file"
done
lint:
name: Lint
runs-on: ubuntu-latest
concurrency:
group: lint-${{ github.ref_name }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Overwrite .mise.toml # Simplify mise in this workflow
run: |
cat <<EOF > .mise.toml
[tools]
poetry = "2.0"
python = "3.12"
uv = "0.5"
[settings]
experimental = true
pipx_uvx = true
python_compile = false
[env]
# Use Python/Mise managed virtual environment
POETRY_VIRTUALENVS_CREATE = "false"
# Setup Python Virtual Environment
_.python.venv = { path = ".venv", create = true }
[tasks."poetry:install"]
description = "Poetry Install dependencies for all submodules"
depends = ["poetry:install:*"]
EOF
- name: Set up Mise
uses: jdx/mise-action@v2
with:
version: ${{ env.MISE_VERSION }}
cache: true
experimental: true
install: true
- name: Load Mise env
run: |
mise env -s bash \
| grep -v 'export PATH=' \
| cut -d' ' -f2 \
>> "$GITHUB_ENV"
- name: Install dependencies with Poetry
run: mise run poetry:install
env:
MISE_JOBS: 1
- name: Run Pylint
run: |
poetry run pylint \
app/ \
endorser/ \
shared/ \
trustregistry/ \
waypoint/ \
--rcfile=.pylintrc \
-r n \
--msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" \
--exit-zero | tee pylintreport.txt
unit:
name: Unit Tests
runs-on: ubuntu-latest
concurrency:
group: unit-test-${{ github.ref_name }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Cache Python venv
uses: actions/cache@v4
with:
path: .venv
key: python-${{ hashFiles('**/poetry.lock') }}
- name: Set up Mise
uses: jdx/mise-action@v2
with:
version: ${{ env.MISE_VERSION }}
cache: true
experimental: true
install: true
env:
MISE_JOBS: 4
- name: Load Mise env
run: |
mise env -s bash \
| grep -v 'export PATH=' \
| cut -d' ' -f2 \
>> "$GITHUB_ENV"
- name: Run unit tests
run: mise run tests:unit
build:
name: Build
permissions:
packages: write # To push to GHCR.io
runs-on: ubuntu-latest
needs:
- format
- lint
- unit
concurrency:
group: docker-build-${{ matrix.image }}-${{ github.ref_name }}
cancel-in-progress: true
outputs:
image_version: ${{ steps.meta.outputs.version }}
strategy:
fail-fast: false
matrix:
image:
- acapy-cloud/app
- acapy-cloud/endorser
- acapy-cloud/governance-agent
- acapy-cloud/ledger-nodes
- acapy-cloud/multitenant-agent
- acapy-cloud/pytest
- acapy-cloud/tails-server
- acapy-cloud/trust-registry
- acapy-cloud/waypoint
- acapy-cloud/xk6
include:
- image: acapy-cloud/app
context: .
file: dockerfiles/app/Dockerfile
platforms: linux/amd64,linux/arm64
- image: acapy-cloud/endorser
context: .
file: dockerfiles/endorser/Dockerfile
platforms: linux/amd64,linux/arm64
- image: acapy-cloud/governance-agent
context: .
file: dockerfiles/agents/Dockerfile.agent
platforms: linux/amd64 # Pending BBS - linux/arm64
- image: acapy-cloud/ledger-nodes
context: https://github.com/bcgov/von-network.git#v1.8.0
file: Dockerfile
platforms: linux/amd64
- image: acapy-cloud/multitenant-agent
context: .
file: dockerfiles/agents/Dockerfile.author.agent
platforms: linux/amd64 # Pending BBS - linux/arm64
- image: acapy-cloud/pytest
context: .
file: dockerfiles/tests/Dockerfile
platforms: linux/amd64,linux/arm64
- image: acapy-cloud/tails-server
context: https://github.com/bcgov/indy-tails-server.git#v1.1.0
file: docker/Dockerfile.tails-server
platforms: linux/amd64,linux/arm64
- image: acapy-cloud/trust-registry
context: .
file: dockerfiles/trustregistry/Dockerfile
platforms: linux/amd64,linux/arm64
- image: acapy-cloud/waypoint
context: .
file: dockerfiles/waypoint/Dockerfile
platforms: linux/amd64,linux/arm64
- image: acapy-cloud/xk6
context: .
file: ./scripts/k6/Dockerfile
platforms: linux/amd64
steps:
- name: Check out code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
cache-binary: false
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}
tags: |
type=raw,value=latest,enable=${{ github.event.repository.default_branch == github.ref_name }}
type=sha,prefix=pr-${{ github.event.pull_request.number }}-,priority=601,enable=${{ github.event_name == 'pull_request' }}
type=sha,prefix={{branch}}-,priority=601,enable=${{ github.event_name == 'push' && github.ref_type == 'branch' }}
type=ref,event=branch,priority=600
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: ${{ matrix.context }}
file: ${{ matrix.file }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
type=gha,scope=build-${{ matrix.image }}
type=registry,ref=ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}:latest
cache-to: type=gha,mode=max,scope=build-${{ matrix.image }}
platforms: ${{ matrix.platforms }}
test:
name: Local Test
needs:
- build
runs-on: ubuntu-latest
concurrency:
group: local-test-${{ github.ref_name }}
cancel-in-progress: true
outputs:
test_success: ${{ steps.test.outputs.test_success }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Cache Python venv
uses: actions/cache@v4
with:
path: .venv
key: python-${{ hashFiles('**/poetry.lock') }}
- name: Set up Mise
uses: jdx/mise-action@v2
with:
version: ${{ env.MISE_VERSION }}
cache: true
experimental: true # Required for mise tasks
install: true
env:
MISE_JOBS: 4
- name: Load Mise env
run: |
mise env -s bash \
| grep -v 'export PATH=' \
| cut -d' ' -f2 \
>> "$GITHUB_ENV"
- name: Install dependencies with Poetry
run: mise run poetry:install
env:
MISE_JOBS: 1
- name: Start Test Harness
run: mise run tilt:ci
shell: bash
env:
REGISTRY: ghcr.io/${{ github.repository_owner }}
IMAGE_TAG: ${{ needs.build.outputs.image_version }}
- name: Test with pytest
id: test
run: |
source .venv/bin/activate
set +e
cp .env.example .env
source .env
# Any portforwards will not be active after `tilt ci` has exited.
kubectl port-forward svc/ledger-browser 9000:8000 -n cloudapi &
poetry run pytest \
--numprocesses 2 \
--dist loadgroup \
--durations=0 \
--ignore ./tilt \
--cov | tee test_output.txt
EXIT_CODE=${PIPESTATUS[0]}
set -e
echo "Exit code: $EXIT_CODE"
# very hacky way to get around the fact that teardown fails even if tests pass
TEARDOWN_ERROR=false
SINGLE_ERROR=false
TEST_FAILURES=0
if grep -q "ERROR at teardown" test_output.txt; then
echo "ERROR at teardown"
TEARDOWN_ERROR=true
fi
if grep -q ", 1 error in" test_output.txt; then
echo "Only 1 error total"
SINGLE_ERROR=true
fi
# Count the number of test failures
TEST_FAILURES=$(grep -c "^FAILED" test_output.txt || true)
echo "Number of test failures: $TEST_FAILURES"
if [ "$TEARDOWN_ERROR" = true ] && [ "$SINGLE_ERROR" = true ] && [ "$TEST_FAILURES" -eq 0 ]; then
echo "Tests passed with teardown error"
exit 0
else
if [ "$EXIT_CODE" -ne 0 ]; then
echo "test_success=false" >> $GITHUB_OUTPUT
else
echo "test_success=true" >> $GITHUB_OUTPUT
fi
exit $EXIT_CODE
fi
- name: Install coverage and generate report
run: |
source .venv/bin/activate
uv pip install coverage
coverage report
coverage xml
- name: Upload coverage to Codacy
run: bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r coverage.xml
env:
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
- name: Upload coverage file as artifact
uses: actions/upload-artifact@v4
with:
name: coverage
path: .coverage
include-hidden-files: true
- name: Get Docker Containers
if: always()
run: docker ps -a
- name: Get Pods
if: always()
run: kubectl get pods --all-namespaces
- name: Get Helm Releases
if: always()
run: helm list --all-namespaces
- name: Connect Cloud Logs
# Connect Cloud can generate a lot of logs...
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=connect-cloud --tail 10000
- name: Docker Cache Logs
if: always()
run: docker logs docker-cache
- name: Endorser Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=endorser --tail 10000
- name: Governance Agent Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=governance-agent --tail 10000
- name: Governance Web Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=governance-web --tail 10000
- name: Ingress Nginx Logs
if: always()
run: kubectl logs -n ingress-system -l app.kubernetes.io/instance=ingress-nginx --tail 10000
- name: Ledger Browser Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=ledger-browser --tail 10000
- name: Ledger Nodes Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=ledger-nodes --tail 10000
- name: Mediator Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=mediator --tail 10000
- name: Multitenant Agent Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=multitenant-agent --tail 10000
- name: Multitenant Web Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=multitenant-web --tail 10000
- name: NATS Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=nats --tail 10000
- name: PGPool Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=postgres,app.kubernetes.io/component=pgpool --tail 10000
- name: PostgreSQL Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=postgres,app.kubernetes.io/component=postgresql --tail 10000
- name: Public Web Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=public-web --tail 10000
- name: Tails Server Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=tails-server --tail 10000
- name: Tenant Web Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=tenant-web --tail 10000
- name: Trust Registry Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=trust-registry --tail 10000
- name: Waypoint Logs
if: always()
run: kubectl logs -n cloudapi -l app.kubernetes.io/instance=waypoint --tail 10000
- name: Tilt Down Destroy
if: always()
run: mise run tilt:down:destroy
deploy-test-eks:
if: github.actor != 'dependabot[bot]' && github.event.pull_request.draft == false
name: Deploy and Test EKS
runs-on: ubuntu-latest
environment:
name: dev
needs:
- build
permissions:
id-token: write # Required to authenticate with AWS
checks: write # Required for action-junit-report
pull-requests: write # Required to comment on PRs for Pytest coverage comment
concurrency:
group: deploy-test-eks
cancel-in-progress: false
timeout-minutes: 60
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Cache Python venv
uses: actions/cache@v4
with:
path: .venv
key: python-${{ hashFiles('**/poetry.lock') }}
- name: Set up Mise
uses: jdx/mise-action@v2
with:
version: ${{ env.MISE_VERSION }}
cache: true
experimental: true # Required for mise tasks
install: true
env:
MISE_JOBS: 4
- name: Load Mise env
run: |
mise env -s bash \
| grep -v 'export PATH=' \
| cut -d' ' -f2 \
>> "$GITHUB_ENV"
- uses: tailscale/github-action@main
with:
authkey: ${{ secrets.TAILSCALE_AUTHKEY }}
version: ${{ env.TAILSCALE_VERSION }}
- name: Deploy to EKS
uses: ./.github/actions/deploy-eks
with:
aws-region: af-south-1
aws-role-arn: arn:aws:iam::402177810328:role/cicd
aws-role-session-name: github-cicd
clean-start: ${{ github.event.inputs.run-reset-deployments || false }}
cluster-name: cloudapi-dev
environment: ${{ vars.ENVIRONMENT }}
helm-version: ${{ env.HELM_VERSION }}
helmfile-plugins: https://github.com/databus23/helm-diff
helmfile-version: ${{ env.HELMFILE_VERSION }}
image-tag: ${{ needs.build.outputs.image_version }}
namespace: acapy-cloud-dev
- name: Run Tests
uses: ./.github/actions/test-eks
with:
clean-start: ${{ github.event.inputs.run-reset-deployments || false }}
environment: ${{ vars.ENVIRONMENT }}
helm-version: ${{ env.HELM_VERSION }}
helmfile-plugins: https://github.com/databus23/helm-diff
helmfile-version: ${{ env.HELMFILE_VERSION }}
image-tag: ${{ needs.build.outputs.image_version }}
namespace: acapy-cloud-dev
pytest-completions: 1
run-regression-tests: ${{ github.event.inputs.run-regression-tests || true }}
run-tests: ${{ github.event.inputs.run-tests || true }}