Skip to content

Commit

Permalink
Modify/#398 infra zero down time (#401)
Browse files Browse the repository at this point in the history
* chore: 서브모듈 커밋 시점 변경

* docs: 액츄에이터 의존성 추가

* infra: 무중단 배포를 위한 cd 스크립트 변경

* infra: 테스트와 빌드 하나로 통합

* infra: 스크립트 수정

* infra: 스크립트 수정
  • Loading branch information
dwax1324 authored Oct 23, 2024
1 parent dd27940 commit 76a6c31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Backend-CD-Prod-A.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Check service availability
run: |
HTTP_STATUS=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:8080/actuator/health)
HTTP_STATUS=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:80/actuator/health)
if [ "$HTTP_STATUS" -eq 200 ]; then
echo "Service is up and running"
else
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/Backend-CD-Prod-B.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
- name: Check service availability
run: |
HTTP_STATUS=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:8080/actuator/health)
HTTP_STATUS=$(curl -o /dev/null -s -w "%{http_code}" http://localhost:80/actuator/health)
if [ "$HTTP_STATUS" -eq 200 ]; then
echo "Service is up and running"
else
Expand Down

0 comments on commit 76a6c31

Please sign in to comment.