Running Kubernetes Locally via Minikube
Quickstart
minikube startStarting local Kubernetes cluster...
Running pre-create checks...
Creating machine...
Starting local Kubernetes cluster...kubectl run hello-minikube --image=k8s.gcr.io/echoserver:1.10 --port=8080deployment.apps/hello-minikube createdkubectl expose deployment hello-minikube --type=NodePortservice/hello-minikube exposedkubectl get podNAME READY STATUS RESTARTS AGE
hello-minikube-3383150820-vctvh 0/1 ContainerCreating 0 3sNAME READY STATUS RESTARTS AGE
hello-minikube-3383150820-vctvh 1/1 Running 0 13scurl $(minikube service hello-minikube --url)Last updated
Was this helpful?