Difference between revisions of "Minikube"
From John Freier
(Created page with "To pull images from local docker environment. eval $(minikube docker-env) Also we need to set the ImagePullPolicy to Never in order to use local docker images.") |
|||
| Line 1: | Line 1: | ||
| + | Minikube is an application that sets up a local single node Kubernetes cluster. | ||
| + | |||
| + | Start Minikube | ||
| + | minikube start | ||
| + | |||
| + | Stop Minikube | ||
| + | minikube stop | ||
| + | |||
| + | Clean up Minikube | ||
| + | minikube delete | ||
| + | |||
To pull images from local docker environment. | To pull images from local docker environment. | ||
eval $(minikube docker-env) | eval $(minikube docker-env) | ||
Also we need to set the ImagePullPolicy to Never in order to use local docker images. | Also we need to set the ImagePullPolicy to Never in order to use local docker images. | ||
Revision as of 08:03, 11 April 2022
Minikube is an application that sets up a local single node Kubernetes cluster.
Start Minikube
minikube start
Stop Minikube
minikube stop
Clean up Minikube
minikube delete
To pull images from local docker environment.
eval $(minikube docker-env)
Also we need to set the ImagePullPolicy to Never in order to use local docker images.