From 7ec0b581fb7f399423874837feabe968c7c21b6f Mon Sep 17 00:00:00 2001 From: 57_Wolve <57_wolve@private.email> Date: Fri, 23 Jan 2026 01:15:54 +0000 Subject: [PATCH] Update install.sh --- install.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/install.sh b/install.sh index 8a1683b..047e65a 100644 --- a/install.sh +++ b/install.sh @@ -95,6 +95,17 @@ if ! curl -sSL -o /usr/local/bin/k0sctl https://github.com/k0sproject/k0sctl/rel exit 1 else chmod +x /usr/local/bin/k0sctl + +fi + +# Install k0s (required for kubernetes cluster) +info "Installing k0s..." +if ! curl -sSL -o /usr/local/bin/k0s https://github.com/k0sproject/k0s/releases/latest/download/k0s-v1.34.3+k0s.0-amd64; then + echo "Error: Failed to download k0s." >&2 + exit 1 +else + chmod +x /usr/local/bin/k0sctl + fi # Install tinkerbell (required for node provisioning)