fix container port: nginx listens on 80, not 8080
All checks were successful
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-frontend (push) Successful in 5s
CI/CD / test-go-pg (push) Successful in 2m19s
CI/CD / test-sqlite (push) Successful in 2m32s
CI/CD / build-and-deploy (push) Successful in 30s

The unified image uses nginx on port 80 as the entrypoint, which
reverse-proxies to the Go backend on 127.0.0.1:8080 internally.
K8s was exposing 8080 directly, bypassing nginx entirely.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 13:13:57 +00:00
parent 2dabbca5ed
commit d32fa5f92d
2 changed files with 6 additions and 6 deletions

View File

@@ -43,4 +43,4 @@ spec:
service:
name: switchboard${DEPLOY_SUFFIX}
port:
number: 8080
number: 80