-
Notifications
You must be signed in to change notification settings - Fork 5
214 lines (177 loc) Β· 7.45 KB
/
backend-prod.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
name: backend-push
on:
push:
branches: [ "main", "feature/#745" ]
paths:
- 'server/**'
- '.github/workflows/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./server
permissions:
contents: read
steps:
- name: CheckOut
uses: actions/checkout@v4
with:
token: ${{secrets.CONFIG_SUBMODULE_TOKEN}}
submodules: true
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle Wrapper
run: ./gradlew clean build
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v3
- name: Build and push
run: |
docker buildx build --platform linux/arm64 -t \
${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }} --push .
deploy:
needs: build
strategy:
matrix:
runner: [ prod-1 , prod-2 ]
runs-on: [ self-hosted, '${{ matrix.runner }}' ]
steps:
- name: Create Docker network if not exists
run: |
NETWORK_NAME="haengdong_network"
if ! sudo docker network ls --format '{{.Name}}' | grep -w "$NETWORK_NAME" > /dev/null 2>&1; then
echo "Creating Docker network $NETWORK_NAME..."
sudo docker network create $NETWORK_NAME
else
echo "Docker network $NETWORK_NAME already exists."
fi
- name: Docker Image pull
run: sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }}
- name: Check running container and determine the next port
id: check-port
run: |
echo "Checking if any container is running on ports 8080 or 8081..."
CURRENT_PORT=$(sudo docker ps --format "{{.Names}}" | grep "haengdong-backend" | grep -o '8080\|8081' || echo "")
echo "CURRENT_PORT on port $CURRENT_PORT."
# CURRENT_PORTκ° λΉ λ¬Έμμ΄μ΄κ±°λ 8081μΈ κ²½μ°
if [ "$CURRENT_PORT" == "8081" ]; then
echo "IF CURRENT_PORT : null or 8081"
NEXT_PORT=8080
else
echo "IF CURRENT_PORT : 8080"
NEXT_PORT=8081
fi
echo "Next container will run on port $NEXT_PORT."
echo "NEXT_PORT=$NEXT_PORT" >> $GITHUB_ENV
echo "CURRENT_PORT=$CURRENT_PORT" >> $GITHUB_ENV
- name: Run new container on the alternate port
run: |
NETWORK_NAME="haengdong_network"
echo "Running new container on port $NEXT_PORT..."
sudo docker run -d \
--name haengdong-backend-$NEXT_PORT \
--network $NETWORK_NAME \
-p $NEXT_PORT:8080 \
-e SPRING_PROFILES_ACTIVE=prod \
-v log-volume:/app/logs \
${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }}
- name: Wait for Application Booting 30 seconds
run: |
sleep 30
- name: Health check the new container
run: |
echo "Performing health check for the new container on port $NEXT_PORT..."
HEALTH_STATUS=$(curl -s http://localhost:$NEXT_PORT/actuator/health | sed -n 's/.*"status":"\([^"]*\)".*/\1/p')
echo "Health check status: $HEALTH_STATUS"
if [ "$HEALTH_STATUS" != "UP" ]; then
echo "Health check failed. Rolling back..."
sudo docker rm -f haengdong-backend-$NEXT_PORT
exit 1
fi
echo "Health check passed."
- name: Update or create Nginx container to point to new container port
run: |
NGINX_CONTAINER_NAME="nginx-proxy"
NETWORK_NAME="haengdong_network"
NEXT_PORT=$NEXT_PORT
echo "Next port is $NEXT_PORT"
echo "Checking if Nginx container exists..."
if sudo docker ps -a --filter "name=$NGINX_CONTAINER_NAME" --format "{{.Names}}" | grep -w $NGINX_CONTAINER_NAME; then
# Nginx 컨ν
μ΄λκ° μ€ν μ€μΈμ§ νμΈ
if sudo docker ps --filter "name=$NGINX_CONTAINER_NAME" --format "{{.Names}}" | grep -w $NGINX_CONTAINER_NAME; then
echo "Nginx container is running."
else
echo "Nginx container exists but is not running. Starting Nginx container..."
sudo docker start $NGINX_CONTAINER_NAME
echo "Nginx container started."
fi
# nginx-conf λλ ν 리 μμ±
mkdir -p ./nginx-conf
# default.conf νμΌ μμ± λλ μ
λ°μ΄νΈ
echo "Creating or updating default.conf..."
echo "server {
listen 80;
location / {
proxy_pass http://haengdong-backend-$NEXT_PORT:8080;
proxy_set_header Host \$host;
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
}
}" > ./nginx-conf/default.conf
# Nginx 컨ν
μ΄λ λ΄λΆμμ μ€μ 리λ‘λ
echo "Reloading Nginx configuration..."
sudo docker cp ./nginx-conf/default.conf $NGINX_CONTAINER_NAME:/etc/nginx/conf.d/default.conf
sudo docker exec $NGINX_CONTAINER_NAME nginx -s reload
echo "Nginx configuration reloaded."
else
echo "Nginx container not found. Creating a new Nginx container..."
# nginx-conf λλ ν 리 μμ±
mkdir -p ./nginx-conf
# default.conf νμΌ μμ±
echo "Creating default.conf..."
echo "server {
listen 80;
location / {
proxy_pass http://haengdong-backend-$NEXT_PORT:8080;
proxy_set_header Host \$host;
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
}
}" > ./nginx-conf/default.conf
# μλ‘μ΄ Nginx 컨ν
μ΄λ μ€ν
sudo docker run -d \
--name $NGINX_CONTAINER_NAME \
--network $NETWORK_NAME \
-p 80:80 \
-v $(pwd)/nginx-conf:/etc/nginx/conf.d:ro \
nginx
echo "New Nginx container created and running."
fi
- name: Stop and remove the old container
run: |
CURRENT_PORT=$CURRENT_PORT
if [ -n "$CURRENT_PORT" ]; then
echo "Stopping on port $CURRENT_PORT..."
sudo docker ps --filter "publish=$CURRENT_PORT" --format "{{.ID}}" | xargs sudo docker stop
echo "Sleeping on port $CURRENT_PORT..."
sleep 15
echo "Removing on port $CURRENT_PORT..."
sudo docker ps -a --format "{{.Names}}" | grep "haengdong-backend-$CURRENT_PORT" | xargs sudo docker rm
else
echo "No container to stop and remove."
fi