22 lines
538 B
Markdown
22 lines
538 B
Markdown
# Bootstrap
|
|
|
|
The following lines document hwo to initalize a fresh cluster. On a real cluster, or using Vagrant. It therefore assumes to clone kubespray to this folder. It will be excluded in *.gitignore* and all files are in this folder.
|
|
|
|
```sh
|
|
git clone https://github.com/kubernetes-sigs/kubespray.git
|
|
./init_kubespray.sh
|
|
cd kubespray
|
|
vagrant up
|
|
# up and abkle to ssh
|
|
vagrant ssh k8s-1
|
|
```
|
|
|
|
|
|
## Done steps
|
|
|
|
The following steps have been done while first setup and are not required to be redone:
|
|
|
|
```sh
|
|
cp ./kubespray/Vagrantfile .
|
|
```
|