https://kubernetes.io/docs/setup/minikube/
Installing & getting started: https://www.youtube.com/watch?v=0rZcYXtbGpc
brew install kubernetes-cli
brew cask install minikube
minikube start
kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.10 --port=8080
kubectl expose deployment hello-minikube --type=NodePort
kubectl get pod
curl $(minikube service hello-minikube --url)
Example Output:
Hostname: hello-minikube-56cdb79778-vqj5cPod Information:-no pod information available-Server values:server_version=nginx: 1.13.3 - lua: 10008Request Information:client_address=172.17.0.1method=GETreal path=/query=request_version=1.1request_scheme=httprequest_uri=http://192.168.99.100:8080/Request Headers:accept=*/*host=192.168.99.100:32619user-agent=curl/7.61.1Request Body:-no body in request-