From 9c16141eb4d6024df7e22a50aeafe4835bb5ddce Mon Sep 17 00:00:00 2001 From: Yuanshun Dong <123429070+ysdongAmazon@users.noreply.github.com> Date: Thu, 2 Feb 2023 11:33:09 -0800 Subject: [PATCH] Update working eksctl download URL The original download URL with new-release as route path no longer worked. Update with a version in URL is mandatory now. Source: https://github.com/weaveworks/eksctl/releases --- content/prerequisites/installtools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/prerequisites/installtools.md b/content/prerequisites/installtools.md index a96baea..e5d9596 100644 --- a/content/prerequisites/installtools.md +++ b/content/prerequisites/installtools.md @@ -29,7 +29,7 @@ sudo chmod +x /usr/local/bin/kubectl echo 'source <(kubectl completion bash)' >>~/.bashrc source ~/.bashrc -curl --silent --location "https://github.com/weaveworks/eksctl/releases/download/latest_release/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp +curl --silent --location "https://github.com/weaveworks/eksctl/releases/download/v0.127.0/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp sudo mv -v /tmp/eksctl /usr/local/bin if ! [ -x "$(command -v jq)" ] || ! [ -x "$(command -v envsubst)" ] || ! [ -x "$(command -v kubectl)" ] || ! [ -x "$(command -v eksctl)" ] || ! [ -x "$(command -v ssm-cli)" ]; then