From c5aa7f8105a7db155a341f8e400e66cdad04360e Mon Sep 17 00:00:00 2001 From: baschno Date: Fri, 26 Dec 2025 20:15:41 +0100 Subject: [PATCH] fix context name parameter --- 01_Basic_Setup/justfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/01_Basic_Setup/justfile b/01_Basic_Setup/justfile index cd5536f..84d4bb0 100644 --- a/01_Basic_Setup/justfile +++ b/01_Basic_Setup/justfile @@ -33,16 +33,17 @@ install: args=( "install" - "--context" "${K8S_CONTEXT}" + "--context" "${context}" "--host" "${K8S_MASTER_NODE_NAME}" "--user" "${username}" + "--no-extras" ) if [ -n "${kubeconfig}" ]; then mkdir -p "$(dirname "${kubeconfig}")" args+=("--local-path" "${kubeconfig}" "--merge") fi - echo "Running: k3sup ${args[*]}" + echo "Running: k3sup ${args[@]}" k3sup "${args[@]}" if [ -n "${context}" ]; then