From 48ed3f06f610ca712a39e99bf4fdaad041547cc6 Mon Sep 17 00:00:00 2001 From: Lyra Naeseth Date: Tue, 27 Jul 2021 12:12:39 -0700 Subject: [PATCH] Update error message when no configuration set --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index c4bd7a5..5602517 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -24,7 +24,7 @@ if [ ! -f "$HOME/.kube/config" ]; then kubectl config use-context default > /dev/null else - echo "No authorization data found. Please provide CONFIG or HTTPS variables. Exiting...." + echo "No authorization data found. Please provide KUBE_CONFIG or KUBE_HOST variables. Exiting..." exit 1 fi fi