From 59c173a422f8163290b25455ebf76b2c0e5f2108 Mon Sep 17 00:00:00 2001 From: Grant Date: Thu, 19 Sep 2024 03:24:33 -0500 Subject: [PATCH] removed kubectl from setup_minikube.sh I think we probably should just get rid of this file. --- resources/scripts/setup_minikube.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/resources/scripts/setup_minikube.sh b/resources/scripts/setup_minikube.sh index f835eed7c..eb364127e 100755 --- a/resources/scripts/setup_minikube.sh +++ b/resources/scripts/setup_minikube.sh @@ -72,15 +72,6 @@ else ERROR_CODE=127 fi -kubectl_path=$(command -v kubectl || true) -if [ -n "$kubectl_path" ]; then - print_partial_message " ⭐️ Found " "kubectl" ": $kubectl_path " "$BOLD" -else - print_partial_message " 💥 Could not find " "kubectl" ". Please follow this link to install it..." "$BOLD" - print_message "" " https://kubernetes.io/docs/tasks/tools/" "$BOLD" - ERROR_CODE=127 -fi - helm_path=$(command -v helm || true) if [ -n "$helm_path" ]; then print_partial_message " ⭐️ Found " "helm" ": $helm_path" "$BOLD"