From 65de766f2f4f2b8947f1577b310feae46e9e25da Mon Sep 17 00:00:00 2001 From: ljosyula Date: Mon, 2 Oct 2023 12:08:17 -0700 Subject: [PATCH] Bug fix : Updating the variable name --- scripts/install-worker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-worker.sh b/scripts/install-worker.sh index b7ae53680..16e3ddda1 100644 --- a/scripts/install-worker.sh +++ b/scripts/install-worker.sh @@ -466,7 +466,7 @@ if [[ "$CACHE_CONTAINER_IMAGES" == "true" ]] && ! [[ ${ISOLATED_REGIONS} =~ $BIN done #### Tag the pulled down image for all other regions in the partition - for REGION in "${REGIONS[@]}"; do + for region in "${REGIONS[@]}"; do for img in "${PULLED_IMGS[@]}"; do region_uri=$(/etc/eks/get-ecr-uri.sh "${region}" "${AWS_DOMAIN}") regional_img="${img/$ECR_URI/$region_uri}"