resequence directories

This commit is contained in:
2023-12-22 22:47:02 -07:00
parent d6c903d719
commit 3f63f88f6e
9 changed files with 13 additions and 13 deletions

View File

@ -0,0 +1,18 @@
# 01 | Cluster Bootstrap
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
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.
```bash
mkdir -p $HOME/.kube
sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
sudo chown $(id -u):$(id -g) $HOME/.kube/config
```