-
Notifications
You must be signed in to change notification settings - Fork 0
203 lines (182 loc) · 6.88 KB
/
guest-prod-CD.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
name: Guest PROD Docker Push
run-name: Deploy to AWS ECR(Guest Docker Image v.${{ github.event.inputs.docker_image_tag }}) by @${{ github.actor }}
on:
workflow_dispatch:
inputs:
docker_image_tag:
description: '이전 버전과 다른 상위 버전을 입력해주세요. (ex. 1.0.0)'
default: '1.0.0'
required: true
type: string
permissions:
users:
- saJaeHyukc
- DongwookKim0823
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.OWNER_ACCESS_TOKEN }}
submodules: true
fetch-depth: 0
- name: Set up QEMU for ARM64
uses: docker/setup-qemu-action@v2
with:
platforms: linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: AWS configure
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-2
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Get changed files
id: changed-files-specific
uses: tj-actions/changed-files@v45
with:
files: |
docker/prod-package.Dockerfile
docker/prod.Dockerfile
pyproject.toml
poetry.lock
- name: Build prod-package docker image and push to ECR
id: build-and-push
# if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: docker/build-push-action@v5
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
with:
context: .
file: ./docker/prod-package.Dockerfile
platforms: linux/arm64
push: true
tags: |
${{ env.ECR_REGISTRY }}/mung-manager-guest-prod-package:latest
- name: Replace dev-Dockerfile and docker-compose
run: |
sed -i 's|${DEV_PACKAGE_IMAGE}|${{ steps.login-ecr.outputs.registry }}/mung-manager-guest-dev-package:latest|' docker/dev.Dockerfile
sed -i 's|${PROD_PACKAGE_IMAGE}|${{ steps.login-ecr.outputs.registry }}/mung-manager-guest-prod-package:latest|' docker/prod.Dockerfile
sed -i 's|docker/local.Dockerfile|docker/dev.Dockerfile|' docker-compose.yml
- name: Create env file
env:
DJANGO_GUEST_ENV: ${{ secrets.DJANGO_GUEST_ENV }}
run: |
touch .env.guest
echo "$DJANGO_GUEST_ENV" >> .env.guest
- name: Build docker compose images for ARM64
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
DOCKER_DEFAULT_PLATFORM: linux/arm64
run: |
docker compose build postgres_db guest_service redis
- name: Run isort
run: docker compose run guest_service poetry run isort mung_manager/ --check
- name: Run black
run: docker compose run guest_service poetry run black mung_manager/ --check
- name: Run flake8
run: docker compose run guest_service poetry run flake8
- name: Run mypy
run: docker compose run guest_service poetry run mypy --config mypy.ini mung_manager/
# - name: Run tests
# run: docker compose run guest_service poetry run pytest --cov=mung_manager/ --cov-fail-under=80 tests/ -n 4
- name: Build prod docker image and push to ECR
id: build-prod-and-push
uses: docker/build-push-action@v5
env:
IMAGE_TAG: ${{ github.event.inputs.docker_image_tag }}
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
with:
context: .
file: ./docker/prod.Dockerfile
platforms: linux/arm64
push: true
tags: |
${{ env.ECR_REGISTRY }}/mung-manager-guest:${{ env.IMAGE_TAG }}
${{ env.ECR_REGISTRY }}/mung-manager-guest:latest
- name: Infra Repository Dispatch
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.OWNER_ACCESS_TOKEN }}
repository: Mung-Manager/BE-Infra
event-type: guest-prod-deploy
client-payload: |
{
"prev_common_docker_image": "${{ steps.login-ecr-public.outputs.registry }}/${{ secrets.ECR_PUBLIC_REGISTRY_ALIAS }}",
"guest_image_tag": "${{ github.event.inputs.docker_image_tag }}",
"s3_bucket": "mung-manager-deploy/prod/guest/",
"actor": "${{ github.actor }}",
"branch": "${{ github.ref }}",
"django_settings_module": "config.django.prod"
}
- name: Notify Slack on Success
if: success()
id: slack-success
uses: slackapi/[email protected]
with:
payload: |
{
"channel": "${{ secrets.SLACK_CHANNEL_ID }}",
"attachments": [
{
"color": "#36a64f",
"title": "${{ github.repository }}",
"title_link": "https://github.com/${{github.repository}}",
"text": "GitHub Action Guest PROD-DOCKER-BUILD 성공 😄",
"fields": [
{
"title": "Repository",
"value": "${{ github.repository }}",
"short": true
},
{
"title": "Tag",
"value": "${{ github.ref_name }}",
"short": true
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
- name: Notify Slack on Failure
if: failure()
id: slack-failure
uses: slackapi/[email protected]
with:
payload: |
{
"channel": "${{ secrets.SLACK_CHANNEL_ID }}",
"attachments": [
{
"color": "#ff0000",
"title": "${{ github.repository }}",
"title_link": "https://github.com/${{github.repository}}",
"text": "GitHub Action Guest PROD-DOCKER-BUILD 실패 😭",
"fields": [
{
"title": "Repository",
"value": "${{ github.repository }}",
"short": true
},
{
"title": "Tag",
"value": "${{ github.ref_name }}",
"short": true
}
]
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK