Minikube
From John Freier
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
Pull Local Images
Pull images from localhost podman
eval $(minikube podman-env)
Pull images from localhost Docker
eval $(minikube docker-env)
Also we need to set the ImagePullPolicy to Never in order to use local docker images.