Any better way to inject image to cluster?

Hi

Is there any better way to inject image to cluster than:
( may be from local computer)
minikube ssh
then
docker pull hub-image

regrds

what do you mean by inject image to cluster? the cluster does not have access to a repository? (even a local one?) if not you should create a repository (we are using nexus) and push the images there.

Then you can point all your deployments to pull images from that repository

How about minikube docker-env and then docker build or docker pull etc.?
UPDATE: Also look at image | minikube

Hi,
thank you.
I did minikube ssh and then docker pull image. It is the same,
I think I need to focus on persistent volume to transfer data into the pod.