This repository was archived by the owner on Apr 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
263 lines (224 loc) · 8.11 KB
/
cicd.yml
File metadata and controls
263 lines (224 loc) · 8.11 KB
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
# CI/CD pipeline
# 1. build-and-push-dev = build & push docker images (BE+FE) to docker hub
# 2. deploy-dev = deploy docker images (BE+FE) to AWS development server
# 3. e2e-tests-on-dev = run end-to-end tests via playwright on AWS development server
# 4. build-and-push-prod = build & push docker images (BE+FE) to docker hub
# 5. deploy-prod = deploy docker images (BE+FE) to AWS production server
name: Deploy MERN Application
on:
push:
branches:
- 150-create-dev-server-on-aws
jobs:
build-and-push-dev:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME_DEV }}
password: ${{ secrets.DOCKER_PASSWORD_DEV }}
- name: Build and push backend
uses: docker/build-push-action@v5
with:
context: ./backend
push: true
tags: martinstierlen/aws-dev-backend:latest
- name: Build and push frontend
uses: docker/build-push-action@v5
with:
context: ./frontend
push: true
tags: martinstierlen/aws-dev-frontend:latest
build-args: |
REACT_APP_API_URL=http://${{ secrets.EC2_PUBLIC_IP_DEV }}:3001
deploy-dev:
needs: build-and-push-dev
runs-on: development
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME_DEV }}
password: ${{ secrets.DOCKER_PASSWORD_DEV }}
- name: Pull latest images
run: |
docker pull martinstierlen/aws-dev-backend:latest
docker pull martinstierlen/aws-dev-frontend:latest
- name: Debug information
run: |
echo "Current directory: $(pwd)"
echo "Docker version: $(docker --version)"
echo "Docker images:"
docker images
echo "Running containers:"
docker ps -a
- name: Stop and remove existing containers
run: |
docker stop nodejs-app-backend nodejs-app-frontend || true
docker rm nodejs-app-backend nodejs-app-frontend || true
- name: Create Docker network
run: docker network create app-network || true
- name: Run backend container
run: |
echo "Attempting to run backend container"
docker run -d --name nodejs-app-backend \
--network app-network \
-p 3001:3001 \
-e MONGO_URL='${{ secrets.MONGO_URL }}' \
-e JWT_SECRET='${{ secrets.JWT_SECRET }}' \
-e FRONTEND_URL='http://${{ secrets.EC2_PUBLIC_IP_DEV }}' \
martinstierlen/aws-dev-backend:latest
echo "Backend container started"
docker ps
- name: Run frontend container
run: |
echo "Attempting to run frontend container"
docker run -d --name nodejs-app-frontend \
--network app-network \
-p 80:80 \
martinstierlen/aws-dev-frontend:latest
echo "Frontend container started"
docker ps
- name: Verify Nginx configuration
run: docker exec nodejs-app-frontend nginx -t
- name: Debug Containers
run: |
echo "Backend logs:"
docker logs nodejs-app-backend
echo "Frontend logs:"
docker logs nodejs-app-frontend
echo "Nginx configuration:"
docker exec nodejs-app-frontend cat /etc/nginx/conf.d/default.conf
- name: Cleanup old images
run: docker image prune -af
- name: Final deployment status
run: |
echo "Deployment completed"
echo "Running containers:"
docker ps
echo "All images:"
docker images
e2e-tests-on-dev:
needs: deploy-dev
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
cd frontend
npm ci
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run Playwright tests
run: |
cd frontend
npx playwright test --config=playwright.service.config.ts --workers=1
env:
PLAYWRIGHT_TEST_BASE_URL: http://${{ secrets.EC2_PUBLIC_IP_DEV }}
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
with:
name: playwright-report
path: frontend/playwright-report/
retention-days: 30
- name: Notify on failure
if: failure()
run: |
echo "E2E tests failed. Please check the playwright report for details."
build-and-push-prod:
needs: e2e-tests-on-dev
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push backend
uses: docker/build-push-action@v5
with:
context: ./backend
push: true
tags: lucatum/nodejs-app-aws-backend:latest
- name: Build and push frontend
uses: docker/build-push-action@v5
with:
context: ./frontend
push: true
tags: lucatum/nodejs-app-aws-frontend:latest
build-args: |
REACT_APP_API_URL=http://${{ secrets.EC2_PUBLIC_IP }}:3001
deploy-prod:
needs: build-and-push-prod
runs-on: production
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Pull latest images
run: |
docker pull lucatum/nodejs-app-aws-backend:latest
docker pull lucatum/nodejs-app-aws-frontend:latest
- name: Debug information
run: |
echo "Current directory: $(pwd)"
echo "Docker version: $(docker --version)"
echo "Docker images:"
docker images
echo "Running containers:"
docker ps -a
- name: Stop and remove existing containers
run: |
docker stop nodejs-app-backend nodejs-app-frontend || true
docker rm nodejs-app-backend nodejs-app-frontend || true
- name: Create Docker network
run: docker network create app-network || true
- name: Run backend container
run: |
echo "Attempting to run backend container"
docker run -d --name nodejs-app-backend \
--network app-network \
-p 3001:3001 \
-e MONGO_URL='${{ secrets.MONGO_URL_PROD }}' \
-e JWT_SECRET='${{ secrets.JWT_SECRET }}' \
-e FRONTEND_URL='http://${{ secrets.EC2_PUBLIC_IP }}' \
lucatum/nodejs-app-aws-backend:latest
echo "Backend container started"
docker ps
- name: Run frontend container
run: |
echo "Attempting to run frontend container"
docker run -d --name nodejs-app-frontend \
--network app-network \
-p 80:80 \
lucatum/nodejs-app-aws-frontend:latest
echo "Frontend container started"
docker ps
- name: Verify Nginx configuration
run: docker exec nodejs-app-frontend nginx -t
- name: Debug Containers
run: |
echo "Backend logs:"
docker logs nodejs-app-backend
echo "Frontend logs:"
docker logs nodejs-app-frontend
echo "Nginx configuration:"
docker exec nodejs-app-frontend cat /etc/nginx/conf.d/default.conf
- name: Cleanup old images
run: docker image prune -af
- name: Final deployment status
run: |
echo "Deployment completed"
echo "Running containers:"
docker ps
echo "All images:"
docker images