You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
This can't simply be done with kubeadm config images pull because the docker daemon needs to be running and it is not during the build process. The current hack to make this work would likely be to cache the images with docker save after they are pulled on the first init to a volume. All inits would check if the directory that is volumed contains the image tar files and if so would load them in prior to kubeadm init so they would be utilized.
An alternative to help speed up the time it takes to pull the control plane images may be to use the hyperkube image option for kubeadm. I believe this will reduce the number of images downloaded.
Settled on a combination of the two, using the Hyperkube image it is cached as a tar file on build, then on init that tar file is loaded into Docker. This saves a reasonable amount of bandwidth and uses a little less time to initialize.
Doing this instead of pulling it on every
./minislate init
will save users time and bandwidth.The text was updated successfully, but these errors were encountered: