Load local image into Minikube

minikube image load local-image:latest

Make sure to set the imagePullPolicy to Never in your manifests. This makes Kubernetes use the locally available image, if present.

spec:
  containers:
  - name: my-container
    image: local-image:latest
    imagePullPolicy: Never
#K8s#Minikube