Skip to content

Commit

Permalink
chore(docker): use kong/kong-gateway-dev in replacement of the
Browse files Browse the repository at this point in the history
deprecated kong/kong-gateway-internal
  • Loading branch information
fffonion committed Nov 27, 2023
1 parent 86f61c7 commit b129cc8
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions pongo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit b129cc8

Please sign in to comment.