From 8d17fb76becfd812d3051d2c2b058c546e336f87 Mon Sep 17 00:00:00 2001 From: Jeffrey Smith Date: Thu, 26 Mar 2026 12:11:42 +0000 Subject: [PATCH] fix CI deploy: align k8s resource var names with CI outputs The k8s/backend.yaml template used BE_-prefixed env vars (BE_MEMORY_REQUEST, etc.) but the CI workflow outputs them without the prefix, causing envsubst to produce empty strings and K8s to reject the deployment. Co-Authored-By: Claude Opus 4.6 (1M context) --- k8s/backend.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/k8s/backend.yaml b/k8s/backend.yaml index d57958d..9930360 100644 --- a/k8s/backend.yaml +++ b/k8s/backend.yaml @@ -169,11 +169,11 @@ spec: mountPath: /data/storage resources: requests: - memory: "${BE_MEMORY_REQUEST}" - cpu: "${BE_CPU_REQUEST}" + memory: "${MEMORY_REQUEST}" + cpu: "${CPU_REQUEST}" limits: - memory: "${BE_MEMORY_LIMIT}" - cpu: "${BE_CPU_LIMIT}" + memory: "${MEMORY_LIMIT}" + cpu: "${CPU_LIMIT}" readinessProbe: httpGet: path: ${BASE_PATH}/health