Offline Installation - Private registry
Configure the registry
Transfer the Docker images
curl -sO http://helm.akamas.io/images/1.3.0/image-listNEW_REGISTRY="<REGISTRY_URL>"
while read IMAGE; do
REGISTRY=$(echo "$IMAGE" | cut -d '/' -f 1)
REPOSITORY=$(echo "$IMAGE" | cut -d ':' -f 1 | cut -d "/" -f2-)
TAG=$(echo "$IMAGE" | cut -d ':' -f 2)
NEW_IMAGE="$NEW_REGISTRY/$REPOSITORY:$TAG"
echo "Migrating $IMAGE to $NEW_IMAGE"
docker pull "$IMAGE"
docker tag "$IMAGE" "$NEW_IMAGE"
docker push "$NEW_IMAGE"
done <image-listCreate the configuration file
Configure the authentication
Start the installation
Check the installation
Last updated
Was this helpful?