Skip to content

Commit

Permalink
Merge pull request #1 from kysre/add-minikube-start-cmd
Browse files Browse the repository at this point in the history
Add makefile to install & start minikube
  • Loading branch information
kysre authored Dec 23, 2023
2 parents 46bfedf + 31ca176 commit b5e9d64
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
help:
@echo "Use 'make <ROOT>' where <ROOT> 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

0 comments on commit b5e9d64

Please sign in to comment.