From 31ca1764baf153bba5ad88e00c377fec5b742c50 Mon Sep 17 00:00:00 2001 From: kasra Date: Sat, 23 Dec 2023 03:50:23 +0330 Subject: [PATCH] Add makefile to install & start minikube --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5c88425 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +help: + @echo "Use 'make ' where is one of" + @echo " minikube: to download and install minikube on linux X86" + @echo " minikube-start: to start the cluster" + @echo " minikube-stop: to halt the cluster" + + +minikube: + curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 + sudo install minikube-linux-amd64 /usr/local/bin/minikube + +minikube-start: + minikube start + +minikube-stop: + minikube stop +