-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build Ubuntu Image for Cluster API #273
base: master
Are you sure you want to change the base?
Conversation
dfc0930
to
c20e073
Compare
c20e073
to
d540ab4
Compare
Would it make sense to pull the images required by kubeadm during image build using
|
Would be surprised if this would work inside the docker build ? |
We would need to download the tarballs listed by kubeadm: # kubeadm config images list
registry.k8s.io/kube-apiserver:v1.30.9
registry.k8s.io/kube-controller-manager:v1.30.9
registry.k8s.io/kube-scheduler:v1.30.9
registry.k8s.io/kube-proxy:v1.30.9
registry.k8s.io/coredns/coredns:v1.11.3
registry.k8s.io/pause:3.9
registry.k8s.io/etcd:3.5.15-0 e.g. with After that a systemd unit could initialize containerd's image store by importing these tarballs. But perhaps it's to early to do this kind of cluster-startup-time optimization. |
And most of these images are only required by the control-plane nodes. |
Description
Fix metal-stack/cluster-api-provider-metal-stack#21