Move persistent staging off port 3100 to avoid Loki conflict
Loki binds 10.0.0.2:3100 on the vSwitch interface so the BRouter host can ship logs in. Persistent staging was trying to publish 0.0.0.0:3100 which conflicts because Linux refuses 0.0.0.0:<P> when any specific-interface :<P> is already in use. Move staging journal to 3110, planner to 3111. PR previews are unaffected — they're already on 3200+2N. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
c703bf4c76
commit
34711550fc
2 changed files with 7 additions and 4 deletions
7
.github/workflows/cd-staging.yml
vendored
7
.github/workflows/cd-staging.yml
vendored
|
|
@ -106,8 +106,11 @@ jobs:
|
|||
{
|
||||
echo "DOMAIN=staging.trails.cool"
|
||||
echo "STAGING_DATABASE=trails_staging"
|
||||
echo "JOURNAL_HOST_PORT=3100"
|
||||
echo "PLANNER_HOST_PORT=3101"
|
||||
# Loki binds 10.0.0.2:3100 on the vSwitch interface, so the
|
||||
# staging stack can't share 3100 — see CLAUDE.md "Staging &
|
||||
# Previews" port table.
|
||||
echo "JOURNAL_HOST_PORT=3110"
|
||||
echo "PLANNER_HOST_PORT=3111"
|
||||
echo "JOURNAL_IMAGE_TAG=staging"
|
||||
echo "PLANNER_IMAGE_TAG=staging"
|
||||
echo "SENTRY_RELEASE=${{ github.sha }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue