generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 0
273 lines (258 loc) · 9.81 KB
/
pr-open.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
name: PR
on:
pull_request:
concurrency:
# PR open and close use the same group, allowing only one at a time
group: pr-${{ github.event.number }}
cancel-in-progress: true
jobs:
init:
name: Initialize
env:
DOMAIN: apps.silver.devops.gov.bc.ca
PREFIX: ${{ github.event.repository.name }}-${{ github.event.number }}
runs-on: ubuntu-22.04
permissions:
pull-requests: write
steps:
- name: PR Greeting
uses: bcgov-nr/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
add_markdown: |
---
Thanks for the PR!
Any successful deployments (not always required) will be available below.
[Backend](https://${{ env.PREFIX }}-backend.${{ env.DOMAIN }}/)
[Frontend](https://${{ env.PREFIX }}-frontend.${{ env.DOMAIN }}/)
[Oracle-API](https://${{ env.PREFIX }}-oracle-api.${{ env.DOMAIN }}/)
Once merged, code will be promoted and handed off to following workflow run.
[Main Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge-main.yml)
- name: OpenShift Init
uses: bcgov-nr/[email protected]
with:
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_server: ${{ vars.OC_SERVER }}
oc_token: ${{ secrets.OC_TOKEN }}
file: common/openshift.init.yml
overwrite: false
parameters:
-p ZONE=${{ github.event.number }}
-p NAME=${{ github.event.repository.name }}
-p ORACLE_DB_USER=${{ secrets.DB_USER }}
-p ORACLE_DB_PASSWORD='${{ secrets.DB_PASSWORD }}'
-p FORESTCLIENTAPI_KEY='${{ secrets.FORESTCLIENTAPI_KEY }}'
-p AWS_KINESIS_STREAM='${{ secrets.AWS_KINESIS_STREAM }}'
-p AWS_KINESIS_ROLE_ARN='${{ secrets.AWS_KINESIS_ROLE_ARN }}'
-p AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }}
-p AWS_ACCESS_KEY_SECRET='${{ secrets.AWS_ACCESS_KEY_SECRET }}'
triggers: ('common/' 'database/' 'backend/' 'frontend/' 'oracle-api/')
builds:
name: Builds
needs:
- init
runs-on: ubuntu-22.04
permissions:
packages: write
strategy:
matrix:
package: [database, backend, frontend, oracle-api]
include:
- package: database
triggers: ('database/')
- package: backend
triggers: ('backend/')
- package: frontend
triggers: ('frontend/')
- package: oracle-api
triggers: ('oracle-api/')
steps:
- uses: actions/checkout@v4
- uses: bcgov-nr/[email protected]
with:
package: ${{ matrix.package }}
tag: ${{ github.event.number }}
tag_fallback: test
token: ${{ secrets.GITHUB_TOKEN }}
triggers: ${{ matrix.triggers }}
deploys:
name: Deploys
needs:
- builds
- init
runs-on: ubuntu-22.04
strategy:
matrix:
name: [database, backend, fluentbit, frontend, oracle-api]
include:
- name: database
file: database/openshift.deploy.yml
parameters:
-p DB_PVC_SIZE=128Mi
overwrite: false
triggers: ('common/' 'database/' 'backend/' 'frontend/')
- name: backend
file: backend/openshift.deploy.yml
overwrite: true
parameters:
-p MIN_REPLICAS=1
-p MAX_REPLICAS=1
-p BUILD=snapshot-${{ github.event.number }}
-p AWS_COGNITO_ISSUER_URI=https://cognito-idp.${{ vars.AWS_REGION }}.amazonaws.com/${{ vars.VITE_USER_POOLS_ID }}
triggers: ('common/' 'database/' 'backend/' 'frontend/')
verification_path: "actuator/health"
- name: fluentbit
file: common/openshift.fluentbit.yml
overwrite: true
triggers: ('common/' 'database/' 'backend/' 'frontend/' 'oracle-api/')
- name: frontend
file: frontend/openshift.deploy.yml
overwrite: true
parameters:
-p VITE_SPAR_BUILD_VERSION=snapshot-${{ github.event.number }}
-p VITE_NRSPARWEBAPP_VERSION=dev
-p MIN_REPLICAS=1
-p MAX_REPLICAS=1
-p VITE_USER_POOLS_ID=${{ vars.VITE_USER_POOLS_ID }}
-p VITE_USER_POOLS_WEB_CLIENT_ID=${{ vars.VITE_USER_POOLS_WEB_CLIENT_ID }}
triggers: ('common/' 'database/' 'backend/' 'oracle-api/' 'frontend/')
- name: oracle-api
file: oracle-api/openshift.deploy.yml
overwrite: true
parameters:
-p NR_SPAR_ORACLE_API_VERSION=snapshot-${{ github.event.number }}
-p MIN_REPLICAS=1
-p MAX_REPLICAS=1
-p AWS_COGNITO_ISSUER_URI=https://cognito-idp.${{ vars.AWS_REGION }}.amazonaws.com/${{ vars.VITE_USER_POOLS_ID }}
triggers: ('common/' 'oracle-api/')
verification_path: "actuator/health"
steps:
- uses: bcgov-nr/[email protected]
with:
file: ${{ matrix.file }}
oc_namespace: ${{ vars.OC_NAMESPACE }}
oc_server: ${{ vars.OC_SERVER }}
oc_token: ${{ secrets.OC_TOKEN }}
overwrite: ${{ matrix.overwrite }}
penetration_test: false
parameters:
-p ZONE=${{ github.event.number }}
-p NAME=${{ github.event.repository.name }}
${{ matrix.parameters }}
triggers: ${{ matrix.triggers }}
verification_path: ${{ matrix.verification_path}}
cypress-test-coverage:
name: Cypress Test and Coverage
needs: [deploys]
runs-on: ubuntu-22.04
env:
CYPRESS_PASSWORD: ${{ secrets.CYPRESS_PASSWORD }}
CYPRESS_USERNAME: ${{ secrets.CYPRESS_USERNAME }}
VITE_SERVER_URL: https://${{ github.event.repository.name }}-${{ github.event.number }}-backend.apps.silver.devops.gov.bc.ca
VITE_ORACLE_SERVER_URL: https://nr-spar-test-oracle-api.apps.silver.devops.gov.bc.ca
VITE_USER_POOLS_ID: ${{ vars.VITE_USER_POOLS_ID }}
VITE_USER_POOLS_WEB_CLIENT_ID: ${{ vars.VITE_USER_POOLS_WEB_CLIENT_ID }}
VITE_ZONE: TEST
steps:
- uses: actions/checkout@v4
- name: Run Cypress CI
uses: bcgov-nr/[email protected]
with:
node_version: "18"
commands: |
npm i
npm run cy:ci
dir: frontend
sonar_args: >
-Dsonar.organization=bcgov-sonarcloud
-Dsonar.javascript.lcov.reportPaths=cypress-coverage/lcov.info
-Dsonar.projectKey=nr-spar_frontend
-Dsonar.sources=src/
-Dsonar.exclusions=src/__test__/**/*
-Dsonar.exclusions=src/mock-server/**/*
-Dsonar.test.inclusions=cypress/e2e/smoke-test/**/*
sonar_token: ${{ secrets.SONAR_FRONTEND }}
- name: Upload videos
uses: actions/upload-artifact@v3
if: always()
with:
name: cypress-videos-chrome
path: /home/runner/work/nr-spar/nr-spar/frontend/cypress/videos/
- name: Upload coverage
uses: actions/upload-artifact@v3
if: success()
with:
name: cypress-coverage
path: /home/runner/work/nr-spar/nr-spar/frontend/cypress-coverage
# tests-api:
# name: API Tests
# needs:
# - deploys
# env:
# TARGET: ${{ github.event.repository.name }}-${{ github.event.number }}-oracle-api.apps.silver.devops.gov.bc.ca
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v3
# with:
# node-version: 16
# - run: |
# # Install newman
# npm install -g newman
# npm install -g newman-reporter-htmlextra
# mkdir -p testArtifacts
# - run: |
# # Run Postman Collection
# newman run oracle-api/test/postman/oracle-api.postman_collection.json \
# -e oracle-api/test/postman/oracle-api.postman_environment.json \
# --env-var "apiAddr=${{ env.TARGET }}" \
# --env-var "releaseVer=snapshot-${{ github.event.number }}" \
# tests-backend:
# name: Backend Tests
# needs:
# - deploys
# env:
# TARGET: ${{ github.event.repository.name }}-${{ github.event.number }}-backend.apps.silver.devops.gov.bc.ca
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v3
# with:
# node-version: 16
# - run: |
# # Install newman
# npm install -g newman
# npm install -g newman-reporter-htmlextra
# mkdir -p testArtifacts
# - run: |
# # Run Postman Collection
# newman run backend/test/postman/starting-api.postman_collection.json \
# -e backend/test/postman/starting-api.postman_environment.json \
# --env-var "apiAddr=${{ env.TARGET }}" \
# --env-var "releaseVer=snapshot-${{ github.event.number }}"
# tests-frontend:
# name: Frontend Tests
# env:
# TARGET: ${{ github.event.repository.name }}-${{ github.event.number }}-backend.apps.silver.devops.gov.bc.ca
# needs:
# - deploys
# continue-on-error: true
# runs-on: ubuntu-22.04
# timeout-minutes: 10
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v3
# with:
# node-version: "16"
# cache: "npm"
# cache-dependency-path: frontend/package-lock.json
# - name: Install dependencies
# run: |
# cd frontend
# npm ci
# - name: Cypress run
# uses: cypress-io/github-action@v5
# with:
# config: baseUrl=https://${{ env.TARGET }}
# install: false
# working-directory: frontend