kubernetes-bootstrapping/01-cluster-bootstrap
Steven Polley c2c82b45f7 more explicit instructions 2024-02-25 16:05:28 -07:00
..
README.md more explicit instructions 2024-02-25 16:05:28 -07:00

README.md

01 | Cluster Bootstrap

Assumption is that an external load balancer is already configured for the cluster control plane IP address. Initialize the cluster on one control node, but do not join any other nodes to it yet.


# Only run on one control plane node - do not join other nodes until after CNI is configured
sudo kubeadm init --config cluster-config.yaml --upload-certs

Copy kube admin config to local profile. This is also a good time to copy it to your desktop with SCP or something.

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