kubernetes-bootstrapping/05-cluster-bootstrap
2023-12-19 07:12:07 -07:00
..
README.md Add initial steps for 05,06 and 10 2023-12-19 07:12:07 -07:00

05-Cluster-Bootstrap

Assumption is that an external load balancer is already configured for the cluster control plane IP address. Initialize the cluster


sudo kubeadm init --config cluster-config.yaml --upload-certs

Copy kubectl config

mkdir -p $HOME/.kube
sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
sudo chown $(id -u):$(id -g) $HOME/.kube/config

Join other control nodes, then join other worker nodes