-
Notifications
You must be signed in to change notification settings - Fork 120
184 lines (168 loc) · 5.83 KB
/
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
name: Deploy
on:
workflow_dispatch:
inputs:
regions:
description: "Regions to deploy to"
required: true
default: "all"
type: choice
options:
- "us-central1"
- "europe-west1"
- "all"
component:
description: "Name of the component to deploy"
required: true
type: choice
options:
- connectors
- core
- front
- front-edge
- prodbox
- oauth
- viz
- alerting-temporal
check_deployment_blocked:
description: "Check #deployment locks or force deploy"
required: true
default: "check"
type: choice
options:
- "check"
- "force (dangerous)"
concurrency:
group: "deploy_${{ inputs.component }}"
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
prepare:
runs-on: ubuntu-latest
outputs:
short_sha: ${{ steps.short_sha.outputs.short_sha }}
steps:
- uses: actions/checkout@v3
- name: Get short sha
id: short_sha
run: echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
notify-start:
needs: [prepare]
runs-on: ubuntu-latest
outputs:
thread_ts: ${{ steps.build_message.outputs.thread_ts }}
steps:
- uses: actions/checkout@v3
- name: Notify Build And Deploy Start
id: build_message
if: ${{ inputs.component != 'front-qa'}}
uses: ./.github/actions/slack-notify
with:
step: "start"
channel: ${{ secrets.SLACK_CHANNEL_ID }}
component: ${{ inputs.component }}
image_tag: ${{ needs.prepare.outputs.short_sha }}
region: ${{ inputs.regions }}
slack_token: ${{ secrets.SLACK_BOT_TOKEN }}
- name: Slack Check Deployment Blocked
if: ${{ inputs.check_deployment_blocked }}
id: check_deployment_blocked
uses: ./.github/actions/slack-check-deployment-blocked
with:
component: ${{ inputs.component }}
channel: ${{ secrets.SLACK_CHANNEL_ID }}
slack_token: ${{ secrets.SLACK_BOT_TOKEN }}
create-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- id: set-matrix
run: |
if [ "${{ inputs.regions }}" = "all" ]; then
echo "matrix=[\"us-central1\",\"europe-west1\"]" >> $GITHUB_OUTPUT
else
echo "matrix=[\"${{ inputs.regions }}\"]" >> $GITHUB_OUTPUT
fi
build:
permissions:
contents: read
id-token: write
needs: [prepare, notify-start, create-matrix]
runs-on: ubuntu-latest
strategy:
matrix:
region: ${{ fromJson(needs.create-matrix.outputs.matrix) }}
fail-fast: true
steps:
- uses: actions/checkout@v3
- name: Set project ID
id: project
run: |
if [ "${{ matrix.region }}" = "us-central1" ]; then
echo "PROJECT_ID=${{ secrets.GCLOUD_US_PROJECT_ID }}" >> $GITHUB_OUTPUT
else
echo "PROJECT_ID=${{ secrets.GCLOUD_EU_PROJECT_ID }}" >> $GITHUB_OUTPUT
fi
- name: Build Image
uses: ./.github/actions/build-image
with:
project_id: ${{ steps.project.outputs.PROJECT_ID }}
region: ${{ matrix.region }}
component: ${{ inputs.component }}
workload_identity_provider: "projects/357744735673/locations/global/workloadIdentityPools/github-pool-apps/providers/github-provider-apps"
depot_token: ${{ secrets.DEPOT_PROJECT_TOKEN }}
commit_sha: ${{ needs.prepare.outputs.short_sha }}
- name: Notify Failure
if: failure()
uses: ./.github/actions/slack-notify
with:
step: "failure"
channel: ${{ secrets.SLACK_CHANNEL_ID }}
component: ${{ inputs.component }}
image_tag: ${{ needs.prepare.outputs.short_sha }}
region: ${{ inputs.regions }}
slack_token: ${{ secrets.SLACK_BOT_TOKEN }}
thread_ts: "${{ needs.notify-start.outputs.thread_ts }}"
deploy:
needs: [prepare, notify-start, build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Generate token
id: generate-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.INFRA_DISPATCH_APP_ID }}
private-key: ${{ secrets.INFRA_DISPATCH_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: dust-infra
- name: Trigger dust-infra workflow
uses: actions/github-script@v6
with:
github-token: ${{ steps.generate-token.outputs.token }}
script: |
await github.rest.repos.createDispatchEvent({
owner: '${{ github.repository_owner }}',
repo: 'dust-infra',
event_type: 'trigger-component-deploy',
client_payload: {
regions: '${{ inputs.regions }}',
component: '${{ inputs.component }}',
image_tag: '${{ needs.prepare.outputs.short_sha }}',
slack_thread_ts: "${{ needs.notify-start.outputs.thread_ts }}",
slack_channel: '${{ secrets.SLACK_CHANNEL_ID }}',
run_playwright: '${{ inputs.run_playwright_tests }}',
playwright_sha: '${{ github.sha }}'
}
})
- name: Notify Failure
if: failure()
uses: ./.github/actions/slack-notify
with:
step: "failure"
channel: ${{ secrets.SLACK_CHANNEL_ID }}
component: ${{ inputs.component }}
image_tag: ${{ needs.prepare.outputs.short_sha }}
region: ${{ inputs.regions }}
slack_token: ${{ secrets.SLACK_BOT_TOKEN }}
thread_ts: "${{ needs.notify-start.outputs.thread_ts }}"