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) <noreply@anthropic.com>
This commit is contained in:
@@ -169,11 +169,11 @@ spec:
|
|||||||
mountPath: /data/storage
|
mountPath: /data/storage
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: "${BE_MEMORY_REQUEST}"
|
memory: "${MEMORY_REQUEST}"
|
||||||
cpu: "${BE_CPU_REQUEST}"
|
cpu: "${CPU_REQUEST}"
|
||||||
limits:
|
limits:
|
||||||
memory: "${BE_MEMORY_LIMIT}"
|
memory: "${MEMORY_LIMIT}"
|
||||||
cpu: "${BE_CPU_LIMIT}"
|
cpu: "${CPU_LIMIT}"
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: ${BASE_PATH}/health
|
path: ${BASE_PATH}/health
|
||||||
|
|||||||
Reference in New Issue
Block a user