-
Notifications
You must be signed in to change notification settings - Fork 46
251 lines (218 loc) · 8.09 KB
/
main.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
name: Build and Deploy SSO Dashboard
on:
workflow_dispatch:
push:
branches:
- 'master'
permissions:
contents: 'read'
id-token: 'write'
env:
APP: sso-dashboard
GAR_LOCATION: us-east1
PROJECT_ID: iam-auth0
REGION: us-east1
CHANNEL_IDS: C05AMLCL4JX
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN}}
jobs:
init:
name: Init
runs-on: ubuntu-latest
outputs:
release_name: ${{ steps.release_name.outputs.release_name }}
docker_tag: ${{ steps.docker_tag.outputs.docker_tag }}
slack_ts: ${{ steps.slack_ts.outputs.slack_ts }}
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
- name: 'Create release name'
id: release_name
run: echo "RELEASE_NAME=${{ env.APP }}-${GITHUB_SHA::7}-${GITHUB_RUN_NUMBER}-${GITHUB_RUN_ATTEMPT}" >> "$GITHUB_OUTPUT"
- name: 'Create docker tag'
id: docker_tag
run: echo "DOCKER_TAG=${{ env.GAR_LOCATION }}-docker.pkg.dev/${{ env.PROJECT_ID }}/${{ env.APP }}/${{ env.APP }}:${{ github.sha }}" >> "$GITHUB_OUTPUT"
- name: Send initial slack notification
uses: slackapi/[email protected]
id: slack
with:
channel-id: ${{ env.CHANNEL_IDS }}
payload-file-path: ".github/workflows/payload-slack-content.json"
env:
STATUS_COLOR: dbab09
STATUS_TITLE: Starting Deployment Pipeline
STATUS_VALUE: ':link-run: *Running*'
- name: Output slack ts
id: slack_ts
run: echo "SLACK_TS=${{ steps.slack.outputs.ts }}" >> "$GITHUB_OUTPUT"
lint:
name: Linting / Unit Testing
needs: init
runs-on: ubuntu-latest
env:
RELEASE_NAME: ${{needs.init.outputs.release_name}}
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
- name: Update slack notification
uses: slackapi/[email protected]
with:
update-ts: ${{ needs.init.outputs.slack_ts }}
channel-id: ${{ env.CHANNEL_IDS }}
payload-file-path: ".github/workflows/payload-slack-content.json"
env:
STATUS_COLOR: dbab09
STATUS_TITLE: Linting/Unittesting
STATUS_VALUE: ':link-run: *Running*'
- name: Install tox
run: pip install tox
- name: Running Tox
run: tox
build:
name: Building
needs: [ init, lint ]
runs-on: ubuntu-latest
env:
RELEASE_NAME: ${{needs.init.outputs.release_name}}
DOCKER_TAG: ${{needs.init.outputs.docker_tag}}
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
- name: Update slack notification
uses: slackapi/[email protected]
with:
update-ts: ${{ needs.init.outputs.slack_ts }}
channel-id: ${{ env.CHANNEL_IDS }}
payload-file-path: ".github/workflows/payload-slack-content.json"
env:
STATUS_COLOR: dbab09
STATUS_TITLE: Building Docker Image
STATUS_VALUE: ':link-run: *Running*'
- name: 'Google auth'
id: 'auth'
uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: '${{ secrets.WIF_PROVIDER }}'
service_account: '${{ secrets.WIF_SERVICE_ACCOUNT }}'
- name: 'Docker auth'
run: gcloud auth configure-docker ${{ env.GAR_LOCATION }}-docker.pkg.dev
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Docker image with buildx
uses: docker/build-push-action@v4
with:
context: .
push: true
build-args: RELEASE_NAME=${{ env.RELEASE_NAME }}
tags: "${{ env.DOCKER_TAG }}"
cache-from: type=gha
cache-to: type=gha,mode=max
validate:
name: Validating
needs: [ init, lint, build ]
runs-on: ubuntu-latest
env:
RELEASE_NAME: ${{needs.init.outputs.release_name}}
DOCKER_TAG: ${{needs.init.outputs.docker_tag}}
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
- name: Update slack notification
uses: slackapi/[email protected]
with:
update-ts: ${{ needs.init.outputs.slack_ts }}
channel-id: ${{ env.CHANNEL_IDS }}
payload-file-path: ".github/workflows/payload-slack-content.json"
env:
STATUS_COLOR: dbab09
STATUS_TITLE: Validating Image
STATUS_VALUE: ':link-run: *Running*'
- name: 'Google auth'
id: 'auth'
uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: '${{ secrets.WIF_PROVIDER }}'
service_account: '${{ secrets.WIF_SERVICE_ACCOUNT }}'
- name: 'Docker auth'
run: gcloud auth configure-docker ${{ env.GAR_LOCATION }}-docker.pkg.dev
- name: Pull Docker image
run: docker pull "${{ env.DOCKER_TAG }}"
- name: Run validate docker image
uses: addnab/docker-run-action@v3
with:
image: "${{ env.DOCKER_TAG }}"
run: echo "TODO Add docker validation checks"
deploy:
name: Sending to Cloud Deploy
needs: [ init, lint, build, validate ]
runs-on: ubuntu-latest
env:
RELEASE_NAME: ${{needs.init.outputs.release_name}}
DOCKER_TAG: ${{needs.init.outputs.docker_tag}}
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
- name: Update slack notification
uses: slackapi/[email protected]
with:
update-ts: ${{ needs.init.outputs.slack_ts }}
channel-id: ${{ env.CHANNEL_IDS }}
payload-file-path: ".github/workflows/payload-slack-content.json"
env:
STATUS_COLOR: dbab09
STATUS_TITLE: Sending to Cloud Deploy
STATUS_VALUE: ':link-run: *Running*'
- name: 'Google auth'
id: 'auth'
uses: 'google-github-actions/auth@v1'
with:
workload_identity_provider: '${{ secrets.WIF_PROVIDER }}'
service_account: '${{ secrets.WIF_SERVICE_ACCOUNT }}'
- name: 'Render cloud deploy config manifests from templates'
run: for template in $(ls clouddeploy/*.template.yaml); do envsubst < ${template} > ${template%%.*}.yaml ; done
- name: 'Create Cloud Deploy release'
uses: 'google-github-actions/create-cloud-deploy-release@v0'
with:
delivery_pipeline: '${{ env.APP }}'
name: '${{ env.RELEASE_NAME }}'
region: '${{ env.REGION }}'
description: '${{ env.GITHUB_COMMIT_MSG }}'
skaffold_file: 'clouddeploy/skaffold.yaml'
images: 'app=${{ env.DOCKER_TAG }}'
final:
name: Finalize Notifications
needs: [ init, lint, build, validate, deploy ]
runs-on: ubuntu-latest
if: always()
env:
RELEASE_NAME: ${{needs.init.outputs.release_name}}
steps:
- name: 'Checkout'
uses: 'actions/checkout@v3'
- name: Update slack deployment complete
if: needs.deploy.result == 'success'
uses: slackapi/[email protected]
with:
update-ts: ${{ needs.init.outputs.slack_ts }}
channel-id: ${{ env.CHANNEL_IDS }}
payload-file-path: ".github/workflows/payload-slack-content.json"
env:
STATUS_COLOR: 28a745
STATUS_TITLE: Building and Deploy
STATUS_VALUE: ':link-zelda: *Completed*'
- name: Update slack deployment ready for promotion
if: needs.deploy.result == 'success'
uses: slackapi/[email protected]
with:
channel-id: ${{ env.CHANNEL_IDS }}
payload-file-path: ".github/workflows/payload-slack-deploy.json"
- name: Update slack deployment failed
if: needs.lint.result == 'failure' || needs.build.result == 'failure' || needs.validate.result == 'failure' || needs.deploy.result == 'failure'
uses: slackapi/[email protected]
with:
update-ts: ${{ needs.init.outputs.slack_ts }}
channel-id: ${{ env.CHANNEL_IDS }}
payload-file-path: ".github/workflows/payload-slack-content.json"
env:
STATUS_COLOR: d81313
STATUS_TITLE: Building and Deploy
STATUS_VALUE: ':skull_and_crossbones: *Failed*'