Commit8d3cc61unknown_key
Merge PR #44: gluecron port 3010 (avoid Crontech collision)
Merge PR #44: gluecron port 3010 (avoid Crontech collision) fix(deploy): default port 3010 to escape Crontech collision</title> <parameter name="body">Box port map discovered live: Crontech web on 3000, Crontech API on 3001 + 3002 (dual-bound). Gluecron moves to 3010. Updates deploy-crontech.sh default + .gluecron/workflows/deploy.yml smoke target.</parameter> </invoke>
2 files changed+2−28d3cc61ac1d74ed840d743cfcad7043d236b26f5
2 changed files+2−2
Modified.gluecron/workflows/deploy.yml+1−1View fileUnifiedSplit
@@ -27,7 +27,7 @@ jobs:
2727 - name: Smoke test
2828 run: |
2929 for i in 1 2 3 4 5 6 7 8; do
30 code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:3001/healthz)
30 code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:3010/healthz)
3131 echo "Attempt $i: /healthz -> $code"
3232 if [ "$code" = "200" ]; then
3333 echo "OK"
Modifiedscripts/deploy-crontech.sh+1−1View fileUnifiedSplit
@@ -28,7 +28,7 @@ set -euo pipefail
2828
2929REPO_DIR=${REPO_DIR:-/opt/gluecron}
3030BARE_REPOS=${BARE_REPOS:-/data/repos}
31PORT=${PORT:-3001}
31PORT=${PORT:-3010}
3232SITE_DOMAIN=${SITE_DOMAIN:-gluecron.com}
3333SITE_ADMIN_USERNAME=${SITE_ADMIN_USERNAME:-ccantynz-alt}
3434
3535