From 6c21e4816e60b9cd60b3a2840bd88ed9bd41fc9b Mon Sep 17 00:00:00 2001 From: SDI Date: Fri, 19 Jun 2026 15:21:11 +0900 Subject: [PATCH] fix: update smoke checks to use port 9090 and direct backend health check --- .gitea/workflows/itam_production_deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/itam_production_deploy.yml b/.gitea/workflows/itam_production_deploy.yml index 1085ace..88b621e 100644 --- a/.gitea/workflows/itam_production_deploy.yml +++ b/.gitea/workflows/itam_production_deploy.yml @@ -125,9 +125,9 @@ jobs: PROD_DEPLOY_PATH: ${{ vars.PROD_DEPLOY_PATH }} run: | set -euo pipefail - ssh "${PROD_USER}@${PROD_HOST}" "curl -fsS http://localhost/health" - ssh "${PROD_USER}@${PROD_HOST}" "curl -fsS http://localhost/ > /dev/null" - ssh "${PROD_USER}@${PROD_HOST}" "cd '${PROD_DEPLOY_PATH}' && docker compose -f docker-compose.prod.yaml exec -T backend curl -fsS http://localhost:3000/ready" + ssh "${PROD_USER}@${PROD_HOST}" "curl -fsS http://localhost:9090/health" + ssh "${PROD_USER}@${PROD_HOST}" "curl -fsS http://localhost:9090/ > /dev/null" + ssh "${PROD_USER}@${PROD_HOST}" "cd '${PROD_DEPLOY_PATH}' && docker compose -f docker-compose.prod.yaml exec -T backend curl -fsS http://localhost:3000/health" - name: Cleanup generated env file if: ${{ always() }}