From a82f318d72a2053ca511fd9adf88dba318768fc4 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 6 Aug 2024 13:02:00 -0400 Subject: [PATCH] collab: Add missing `ZED_LLM_LOAD_BALANCER_SIZE_UNIT` variable (#15868) We missed this in #15863. Release Notes: - N/A --- .github/workflows/deploy_collab.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy_collab.yml b/.github/workflows/deploy_collab.yml index 57a228991e..4555698ecd 100644 --- a/.github/workflows/deploy_collab.yml +++ b/.github/workflows/deploy_collab.yml @@ -106,10 +106,12 @@ jobs: export ZED_KUBE_NAMESPACE=production export ZED_COLLAB_LOAD_BALANCER_SIZE_UNIT=10 export ZED_API_LOAD_BALANCER_SIZE_UNIT=2 + export ZED_LLM_LOAD_BALANCER_SIZE_UNIT=2 elif [[ $GITHUB_REF_NAME = "collab-staging" ]]; then export ZED_KUBE_NAMESPACE=staging export ZED_COLLAB_LOAD_BALANCER_SIZE_UNIT=1 export ZED_API_LOAD_BALANCER_SIZE_UNIT=1 + export ZED_LLM_LOAD_BALANCER_SIZE_UNIT=1 else echo "cowardly refusing to deploy from an unknown branch" exit 1