Skip to content

Commit

Permalink
Fix region in cached image names
Browse files Browse the repository at this point in the history
  • Loading branch information
cartermckinnon committed Oct 10, 2023
1 parent 1dc843d commit d205a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install-worker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit d205a08

Please sign in to comment.