From 8fc61b3247fd51caec4e83d64de2955a61736998 Mon Sep 17 00:00:00 2001 From: Moritz Graf Date: Sun, 18 Dec 2022 20:36:15 +0100 Subject: [PATCH] Updating readme in kubespray bootstrap folder --- bootstrap/README.md | 6 +++--- bootstrap/init.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap/README.md b/bootstrap/README.md index ecc9fe2..a98dcb0 100644 --- a/bootstrap/README.md +++ b/bootstrap/README.md @@ -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. -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 -./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 diff --git a/bootstrap/init.sh b/bootstrap/init.sh index f278eb4..dfcae0a 100755 --- a/bootstrap/init.sh +++ b/bootstrap/init.sh @@ -6,7 +6,7 @@ echo "######################################################################################" echo "## Reinit repository" rm -rf kubespray -VERSION=${1:-release-2.19} +VERSION="release-2.19" git clone --branch $VERSION https://github.com/kubernetes-sigs/kubespray.git echo "######################################################################################"