Offline Installation - Private registry
Configure the registry
Transfer the Docker images
curl -sO http://helm.akamas.io/images/1.8.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
Define Size
Using custom API rate limits
Selecting cluster nodes
Start the installation
Check the installation
Installing telemetry providers
Last updated
Was this helpful?