From 473e0a1f8f2ca103b56f983d8247bdf2abc1f2de Mon Sep 17 00:00:00 2001 From: 57_Wolve <57_wolve@private.email> Date: Thu, 15 Jan 2026 13:09:23 +0000 Subject: [PATCH] Update install.sh --- install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install.sh b/install.sh index ca036ec..3a25f91 100644 --- a/install.sh +++ b/install.sh @@ -81,6 +81,14 @@ else chmod +x /usr/local/bin/k0sctl fi +# Install tinkerbell (required for node provisioning) +info "Installing tinkerbell..." +if ! curl -sSL -o /usr/local/bin/tinkerbell https://github.com/tinkerbell/tinkerbell/releases/latest/download/tinkerbell-embedded-linux-amd64; then + echo "Error: Failed to download tinkerbell." >&2 + exit 1 +else + chmod +x /usr/local/bin/tinkerbell +fi } main() {