From b8336a132e72c9fb36fb0e66eb8aab9026bbbac0 Mon Sep 17 00:00:00 2001 From: Jules Belveze <32683010+JulesBelveze@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:23:59 +0100 Subject: [PATCH] [k8s] - fix: correct the config file path for region-specific settings (#9408) - Change the config file extension from .yaml to .env for regional configurations --- k8s/cloud-build_tmp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/cloud-build_tmp.sh b/k8s/cloud-build_tmp.sh index 8f6f04e9c2a6..fc965ee345f4 100644 --- a/k8s/cloud-build_tmp.sh +++ b/k8s/cloud-build_tmp.sh @@ -49,7 +49,7 @@ fi cd "$WORKING_DIR" # Load region-specific config -CONFIG_FILE=".github/configs/${REGION}.yaml" +CONFIG_FILE=".github/configs/.env.${REGION}" if [ ! -f "$CONFIG_FILE" ]; then echo "Error: Config file not found: $CONFIG_FILE" exit 1