From 372301938b2e2d76123b67461344a7d364f0073d Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Fri, 21 Jan 2022 13:57:06 +0100 Subject: [PATCH] Fixed installation issue with kube-flannel.yml The installation of the local K8s cluster fails when kube-flannel.yml is not found in the temp folder. The error that we see in the installation is "error reading [/tmp/flannel.*****]: recognized file extensions are [.json .yaml .yml]" This commit updates the function deploy_cni_provider to remove the silent output when getting kube-flannel.yml. In addition, it adds several retries on error. Finally, the error message has been modified to be more explicit about the error. Change-Id: Ie979dc599d959bed778b3bd1e2c69257fcb51f63 Signed-off-by: garciadeblas --- installers/install_kubeadm_cluster.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installers/install_kubeadm_cluster.sh b/installers/install_kubeadm_cluster.sh index d610bb68..70f6d9da 100755 --- a/installers/install_kubeadm_cluster.sh +++ b/installers/install_kubeadm_cluster.sh @@ -61,7 +61,8 @@ function deploy_cni_provider() { [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function CNI_DIR="$(mktemp -d -q --tmpdir "flannel.XXXXXX")" trap 'rm -rf "${CNI_DIR}"' EXIT - wget -q https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml -P $CNI_DIR + wget --retry-on-host-error --retry-on-http-error 404,429,503 --tries=5 https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml -P $CNI_DIR + [ ! -f $CNI_DIR/kube-flannel.yml ] && FATAL "Cannot Install Flannel because $CNI_DIR/kube-flannel.yml was not found. Maybe the file https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml is temporarily not accessible" kubectl apply -f $CNI_DIR [ $? -ne 0 ] && FATAL "Cannot Install Flannel" [ -z "${DEBUG_INSTALL}" ] || DEBUG end of function -- 2.25.1