This message was deleted.
# rke2
a
This message was deleted.
c
Is there a way to store the images required for a helm deployment locally on my cluster nodes so pull_policy: IfNotPresent pulls from there instead of internet
No, Always means it has to go out to a registry, even if the node already has the image. You could use the embedded registry mirror though, to satisfy that requirement. Hasn’t been added to the RKE2 docs, but you can check it out at https://docs.k3s.io/installation/registry-mirror
i
Perhaps you write a script to dump all important running images and reload them after starting the cluster? Perhaps this is helpful: https://blog.scottlowe.org/2020/01/25/manually-loading-container-images-with-containerd/
With
IfNotPresent
, the image should come out of the local image store of containerd, no internet access required.
f
very cool, thanks for the insight guys