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