Updating readme in kubespray bootstrap folder

This commit is contained in:
Moritz Graf 2022-12-18 20:36:15 +01:00
parent 1a1e109304
commit 8fc61b3247
2 changed files with 4 additions and 4 deletions

View File

@ -2,13 +2,13 @@
The following lines document how 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. The following lines document how 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.
Use [kubespray tag](https://github.com/kubernetes-sigs/kubespray/releases) as parameter The version to be initialized in configured in the `init.sh` script.
```sh ```sh
./init.sh "release-2.14" . ./init.sh
``` ```
See [kubespray.io](https://kubespray.io/) oj detailed information about kubespray. Though it seems to be a littlebit outdated. See [kubespray.io](https://kubespray.io/) on detailed information about kubespray. Though it seems to be a littlebit outdated.
## Vagrant ## Vagrant

View File

@ -6,7 +6,7 @@
echo "######################################################################################" echo "######################################################################################"
echo "## Reinit repository" echo "## Reinit repository"
rm -rf kubespray rm -rf kubespray
VERSION=${1:-release-2.19} VERSION="release-2.19"
git clone --branch $VERSION https://github.com/kubernetes-sigs/kubespray.git git clone --branch $VERSION https://github.com/kubernetes-sigs/kubespray.git
echo "######################################################################################" echo "######################################################################################"