From b129cc81522b1d988642f8a6993cec40b5de1628 Mon Sep 17 00:00:00 2001 From: Wangchong Zhou Date: Mon, 27 Nov 2023 15:14:24 +0800 Subject: [PATCH] chore(docker): use kong/kong-gateway-dev in replacement of the deprecated kong/kong-gateway-internal --- pongo.sh | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pongo.sh b/pongo.sh index 91abdcfe..4949ea0d 100755 --- a/pongo.sh +++ b/pongo.sh @@ -112,7 +112,7 @@ function globals { # development EE images repo, these require to additionally set the credentials # in $DOCKER_USERNAME and $DOCKER_PASSWORD - DEVELOPMENT_EE_TAG="kong/kong-gateway-internal:master-ubuntu" + DEVELOPMENT_EE_TAG="kong/kong-gateway-dev:master-ubuntu" # development CE images, these are public, no credentials needed DEVELOPMENT_CE_TAG="kong/kong:master-ubuntu" @@ -457,16 +457,7 @@ function get_image { image=$DEVELOPMENT_EE_TAG docker pull "$image" if [[ ! $? -eq 0 ]]; then - warn "failed to pull the Kong Enterprise development image, retrying with login..." - check_secret_availability "$image" - docker_login_ee - docker pull "$image" - if [[ ! $? -eq 0 ]]; then - docker logout - err "failed to pull: $image" - fi - msg "pull with login succeeded" - docker logout + err "failed to pull: $image" fi fi