From 1064344515190d13792903b943a4a6ce2196a082 Mon Sep 17 00:00:00 2001 From: Evan Hosinski Date: Thu, 22 Jan 2026 10:45:40 -0500 Subject: [PATCH] Token Update Updated to support token based auth for customers and UX --- install.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 92441ef..bb806e8 100644 --- a/install.sh +++ b/install.sh @@ -119,12 +119,15 @@ IMAGE="${IMAGE_BASE}/${CUDA_VERSION}/tentacle:${IMAGE_TAG}" # ----------------------------- # Registry login # ----------------------------- -echo -read -rp "Registry username: " REG_USER -read -rsp "Registry password or token: " REG_PASS +REG_USER="krkn-registry" + +read -rsp "Registry access token: " REG_PASS echo -echo "$REG_PASS" | docker login "$REGISTRY" -u "$REG_USER" --password-stdin +echo "$REG_PASS" | docker login "$REGISTRY" -u "$REG_USER" --password-stdin || { + err "Docker login failed. Invalid token or registry unreachable." + exit 1 +} # ----------------------------- # Prompt config