improve readme with links and content

This commit is contained in:
2023-12-22 22:24:31 -07:00
parent 84f56c0238
commit 469b9a55f3
8 changed files with 38 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# 05-Cluster-Bootstrap
Assumption is that an external load balancer is already configured for the cluster control plane IP address. Initialize the cluster
Assumption is that an external load balancer is already configured for the cluster control plane IP address. Initialize the cluster, but do not join any other nodes to it yet.
```bash
@ -8,7 +8,7 @@ sudo kubeadm init --config cluster-config.yaml --upload-certs
```
Copy kubectl config
Copy kube admin config to local profile. This is also a good time to copy it to your desktop with SCP or something.
```bash
mkdir -p $HOME/.kube
@ -16,5 +16,3 @@ sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
sudo chown $(id -u):$(id -g) $HOME/.kube/config
```
Before you join other nodes, deploy the CNI in 06! If you don't, there is sometimes an issue where the br0 adapter will use the crio CNI configuration.