fix CI deploy: align image var name (BE_IMAGE → IMAGE)
Some checks failed
CI/CD / detect-changes (push) Successful in 4s
CI/CD / test-frontend (push) Successful in 5s
CI/CD / test-go-pg (push) Successful in 2m2s
CI/CD / test-sqlite (push) Successful in 2m33s
CI/CD / build-and-deploy (push) Failing after 3m10s

k8s/backend.yaml referenced ${BE_IMAGE} but the workflow env
defines ${IMAGE}, causing envsubst to produce an empty image
name (InvalidImageName). Also consolidated the summary table
to single image line since FE/BE are merged.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 12:29:19 +00:00
parent 9a71ca51cb
commit 5df46a0221
2 changed files with 2 additions and 3 deletions

View File

@@ -54,7 +54,7 @@ spec:
spec:
containers:
- name: backend
image: ${BE_IMAGE}:${IMAGE_TAG}
image: ${IMAGE}:${IMAGE_TAG}
imagePullPolicy: Always
ports:
- containerPort: 8080