From 1cde6961736749d2f63b4f29e87783f1b41527c6 Mon Sep 17 00:00:00 2001 From: Scott Trent Date: Sat, 5 Oct 2024 10:50:53 +0900 Subject: [PATCH] include /usr/local/bin in path Signed-off-by: Scott Trent --- deployment/setup-local.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deployment/setup-local.sh b/deployment/setup-local.sh index 24db11d..0bc7af2 100644 --- a/deployment/setup-local.sh +++ b/deployment/setup-local.sh @@ -6,6 +6,8 @@ set -o pipefail KEPLER_NS=kepler PROMETHEUS_NS=monitoring +export PATH=$PATH:/usr/local/bin + echo "> Creating Kind cluster" echo "> Configure cluster to run Kepler" echo "> Mount /proc - to expose information about processes running on the host" @@ -71,4 +73,4 @@ kubectl cp deployment/kepler_dashboard.json monitoring/$GF_POD:/tmp/dashboards/k # Optional: Delete Kind cluster after use # kind delete cluster --name="$CLUSTER_NAME" - echo "> Done" \ No newline at end of file + echo "> Done"