This message was deleted.
# rancher-desktop
a
This message was deleted.
f
The problem is that using the tag
latest
implies an
imagePullPolicy
of
Always
, which means kubelet will still check the registry first to see if there isn't a newer image available. So you either need to explicitly specify an
imagePullPolicy
of
Never
or at least
IfNotPresent
. Or you need to specify any other tag than
latest
.
🙌 1
Make sure you read all the way to the "Default image pull policy" section...